Пример #1
0
 public DataMapper(
     IAppContext appContext
     , IEntityFinder entityFinder
     , IRoleObjectAccessEntityPermissionService roleObjectAccessEntityPermissionService
     , IPrincipalObjectAccessService principalObjectAccessService
     , IEventPublisher eventPublisher
     , IBusinessUnitService businessUnitService
     , IOrganizationDataProvider organizationDataProvider
     , IEntityMapFinder entityMapFinder
     , IAttributeMapFinder attributeMapFinder
     , IRelationShipFinder relationShipFinder
     , IEntityPluginExecutor entityPluginExecutor
     , IAttributeFinder attributeFinder
     , IDataFinder dataFinder
     , IDataCreater dataCreater)
     : base(appContext, entityFinder, roleObjectAccessEntityPermissionService, principalObjectAccessService, eventPublisher, businessUnitService)
 {
     _organizationDataProvider = organizationDataProvider;
     _entityMapFinder          = entityMapFinder;
     _attributeMapFinder       = attributeMapFinder;
     _relationShipFinder       = relationShipFinder;
     _entityPluginExecutor     = entityPluginExecutor;
     _attributeFinder          = attributeFinder;
     _dataFinder  = dataFinder;
     _dataCreater = dataCreater;
 }
Пример #2
0
 public EntityMapController(IWebAppContext appContext
                            , IEntityMapFinder entityMapFinder
                            , IEntityFinder entityService)
     : base(appContext)
 {
     _entityMapFinder = entityMapFinder;
     _entityFinder    = entityService;
 }
Пример #3
0
 public EntityAppendingController(IWebAppContext appContext
                                  , IEntityFinder entityFinder
                                  , IEntityMapFinder entityMapFinder
                                  , IDataCreater dataCreater)
     : base(appContext)
 {
     _entityFinder    = entityFinder;
     _entityMapFinder = entityMapFinder;
     _dataCreater     = dataCreater;
 }
Пример #4
0
 public MapUpdater(
     IFieldValueUpdater fieldValueUpdater
     , IEntityFinder entityFinder
     , IAttributeFinder attributeFinder
     , IEntityMapFinder entityMapFinder
     , IAttributeMapFinder attributeMapFinder
     )
 {
     _fieldValueUpdater  = fieldValueUpdater;
     _entityFinder       = entityFinder;
     _attributeFinder    = attributeFinder;
     _entityMapFinder    = entityMapFinder;
     _attributeMapFinder = attributeMapFinder;
 }
Пример #5
0
 public EntityMapImporter(IAppContext appContext
                          , IEntityMapCreater entityMapCreater
                          , IEntityMapUpdater entityMapUpdater
                          , IEntityMapFinder entityMapFinder
                          , IAttributeMapCreater attributeMapCreater
                          , IAttributeMapDeleter attributeMapDeleter)
 {
     _appContext          = appContext;
     _entityMapCreater    = entityMapCreater;
     _entityMapUpdater    = entityMapUpdater;
     _entityMapFinder     = entityMapFinder;
     _attributeMapCreater = attributeMapCreater;
     _attributeMapDeleter = attributeMapDeleter;
 }
Пример #6
0
 public BusinessFlowController(IWebAppContext appContext
                               , IEntityFinder entityFinder
                               , IEntityMapFinder entityMapFinder
                               , IWorkFlowFinder workFlowFinder
                               , IBusinessProcessFlowInstanceService businessProcessFlowInstanceService
                               , IBusinessProcessFlowInstanceUpdater businessProcessFlowInstanceUpdater
                               , IProcessStageService processStageService
                               , IDataFinder dataFinder
                               , IDataUpdater dataUpdater
                               , IDataMapper dataMapper)
     : base(appContext)
 {
     _entityFinder    = entityFinder;
     _entityMapFinder = entityMapFinder;
     _workFlowFinder  = workFlowFinder;
     _businessProcessFlowInstanceService = businessProcessFlowInstanceService;
     _businessProcessFlowInstanceUpdater = businessProcessFlowInstanceUpdater;
     _processStageService = processStageService;
     _dataFinder          = dataFinder;
     _dataUpdater         = dataUpdater;
     _dataMapper          = dataMapper;
 }
Пример #7
0
 public EntityMapController(IWebAppContext appContext
                            , ISolutionService solutionService
                            , IEntityFinder entityFinder
                            , IAttributeFinder attributeFinder
                            , IRelationShipFinder relationShipFinder
                            , IEntityMapCreater entityMapCreater
                            , IEntityMapUpdater entityMapUpdater
                            , IEntityMapFinder entityMapFinder
                            , IEntityMapDeleter entityMapDeleter
                            , IAttributeMapCreater attributeMapCreater
                            , IAttributeMapFinder attributeMapFinder)
     : base(appContext, solutionService)
 {
     _entityFinder        = entityFinder;
     _attributeFinder     = attributeFinder;
     _relationShipFinder  = relationShipFinder;
     _entityMapCreater    = entityMapCreater;
     _entityMapUpdater    = entityMapUpdater;
     _entityMapFinder     = entityMapFinder;
     _entityMapDeleter    = entityMapDeleter;
     _attributeMapCreater = attributeMapCreater;
     _attributeMapFinder  = attributeMapFinder;
 }
Пример #8
0
 public EntityMapExporter(IEntityMapFinder entityMapFinder)
 {
     _entityMapFinder = entityMapFinder;
 }