Die neue Version vom Mobilklienten mit Bootstrap 4

This commit is contained in:
Lyndon Jetten
2020-04-02 13:19:14 +02:00
parent 6b2f57e5fd
commit ea43958717
239 changed files with 99360 additions and 7699 deletions

View File

@@ -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;