Esempio n. 1
0
 public FlowController(IWebAppContext appContext
                       , IEntityFinder entityFinder
                       , ISolutionService solutionService
                       , IWorkFlowFinder workFlowFinder
                       , IWorkFlowCreater workFlowCreater
                       , IWorkFlowUpdater workFlowUpdater
                       , IWorkFlowDeleter workFlowDeleter
                       , IWorkFlowProcessFinder workFlowProcessFinder
                       , IProcessStageService processStageService
                       , IWorkFlowInstanceService workFlowInstanceService
                       , IWorkFlowStepService workFlowStepService
                       , IWorkFlowCanceller workFlowCanceller)
     : base(appContext, solutionService)
 {
     _entityFinder            = entityFinder;
     _workFlowFinder          = workFlowFinder;
     _workFlowCreater         = workFlowCreater;
     _workFlowUpdater         = workFlowUpdater;
     _workFlowDeleter         = workFlowDeleter;
     _workFlowInstanceService = workFlowInstanceService;
     _workFlowProcessFinder   = workFlowProcessFinder;
     _processStageService     = processStageService;
     _workFlowStepService     = workFlowStepService;
     _workFlowCanceller       = workFlowCanceller;
 }
Esempio n. 2
0
 public ProcessStageController(IProcessStageService processStageService,
                               ILog <ProcessStageController> logger, IMapper mapper)
     : base(logger)
 {
     _processStageService = processStageService;
     _mapper = mapper;
 }
 public BusinessProcessFlowInstanceUpdater(IBusinessProcessFlowInstanceRepository businessProcessFlowInstanceRepository
                                           , IEntityFinder entityFinder
                                           , IProcessStageService processStageService
                                           , IDataFinder dataFinder
                                           , IDataUpdater dataUpdater)
 {
     _businessProcessFlowInstanceRepository = businessProcessFlowInstanceRepository;
     _entityFinder        = entityFinder;
     _processStageService = processStageService;
     _dataFinder          = dataFinder;
     _dataUpdater         = dataUpdater;
 }
Esempio n. 4
0
 public WorkFlowImporter(IAppContext appContext
                         , IWorkFlowFinder workFlowFinder
                         , IWorkFlowCreater workFlowCreater
                         , IWorkFlowUpdater workFlowUpdater
                         , IWorkFlowStepService workFlowStepService
                         , IProcessStageService processStageService)
 {
     _appContext          = appContext;
     _workFlowFinder      = workFlowFinder;
     _workFlowCreater     = workFlowCreater;
     _workFlowUpdater     = workFlowUpdater;
     _workFlowStepService = workFlowStepService;
     _processStageService = processStageService;
 }
Esempio n. 5
0
 public BusinessProcessController(IWebAppContext appContext
                                  , IEntityFinder entityFinder
                                  , IAttributeFinder attributeFinder
                                  , IRelationShipFinder relationShipFinder
                                  , IWorkFlowFinder workFlowFinder
                                  , IBusinessProcessFlowInstanceService businessProcessFlowInstanceService
                                  , IProcessStageService processStageService
                                  , IDataFinder dataFinder)
     : base(appContext)
 {
     _entityFinder       = entityFinder;
     _attributeFinder    = attributeFinder;
     _relationShipFinder = relationShipFinder;
     _workFlowFinder     = workFlowFinder;
     _businessProcessFlowInstanceService = businessProcessFlowInstanceService;
     _processStageService = processStageService;
     _dataFinder          = dataFinder;
 }
Esempio n. 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;
 }