Die neue Version vom Mobilklienten mit Bootstrap 4
This commit is contained in:
@@ -17,6 +17,7 @@ namespace BeWo.Service.DCEntityMapper
|
||||
pDataContract.IsOnlyForEmployee = pEntity.IsOnlyForEmployee;
|
||||
pDataContract.IsParent = pEntity.IsParent;
|
||||
pDataContract.IsExpanded = pEntity.IsExpanded;
|
||||
pDataContract.ActivationType = pEntity.IsActive;
|
||||
|
||||
pDataContract.Parent = pEntity.Parent != null ? MapperFactory.TextModuleDC_TextModule.MapToNewDC(pEntity.Parent) : null;
|
||||
|
||||
@@ -38,6 +39,7 @@ namespace BeWo.Service.DCEntityMapper
|
||||
pEntity.IsOnlyForEmployee = pDataContract.IsOnlyForEmployee;
|
||||
pEntity.IsParent = pDataContract.IsParent;
|
||||
pEntity.IsExpanded = pDataContract.IsExpanded;
|
||||
pEntity.IsActive = pDataContract.ActivationType;
|
||||
|
||||
pEntity.Parent = pDataContract.Parent != null ? DAOFactory.GenericDAO.LoadByID<TextModule>(pDataContract.Parent.TextModuleOid.Value) : null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user