public DocumentMappingController(IWorkflowService workflowService, IDocumentService documentService, IDocumentMappingService documentMappingService)
 {
     this.workflowService = workflowService;
     this.documentService = documentService;
     this.documentMappingService = documentMappingService;
     this.service = new Service(this.documentService, this.workflowService);
 }
 public ClassificationController(IClassificationService classificationService, ISubProcessService subProcessService, IProcessService processService)
 {
     this.classificationService = classificationService;
     this.subProcessService = subProcessService;
     this.processService = processService;
     this.service = new Service(this.subProcessService);
 }
 public NotificationMappingController(IWorkflowService workflowService, IStatusService statusService, INotificationMappingService notificationMappingService)
 {
     this.workflowService = workflowService;
     this.statusService = statusService;
     this.notificationMappingService = notificationMappingService;
     this.service = new Service(this.statusService, this.workflowService);
 }
 public WorkflowMappingController(IWorkflowService workflowService, IRoleService roleService, IWorkflowMappingService workflowMappingService, IProcessService processService)
 {
     this.workflowService = workflowService;
     this.roleService = roleService;
     this.workflowMappingService = workflowMappingService;
     this.processService = processService;
     this.service = new Service(this.workflowService, roleService);
 }
示例#5
0
 public WorkflowController(IWorkflowService workflowService, IProcessService processService, ISubProcessService subProcessService, IClassificationService classificationService, IRoleService roleService)
 {
     this.workflowService = workflowService;
     this.processService = processService;
     this.subProcessService= subProcessService;;
     this.classificationService= classificationService;
     this.roleService = roleService;
     this.service = new Service(this.processService, this.subProcessService, this.classificationService, this.roleService);
 }
 public WorkflowMappingController(IProcessService processService, ISubProcessService subProcessService, IClassificationService classificationService, IWorkflowService workflowService, IDocumentMappingService documentMappingService, IDocumentService documentService, INodeService nodeService)
 {
     this.processService = processService;
     this.subProcessService = subProcessService;
     this.classificationService = classificationService;
     this.workflowService = workflowService;
     this.documentMappingService = documentMappingService;
     this.documentService = documentService;
     this.nodeService = nodeService;
     this.service = new Service(documentService, processService, subProcessService, classificationService);
 }
 public TransactionController(IWorkflowService workflowService, 
                    IProcessService processService, 
                    ISubProcessService subProcessService, 
                    IClassificationService classificationService, INodeService nodeService,
                    IDocumentMappingService documentMappingService,
                    IWorkflowMappingService workflowMappingService,
                    INotificationMappingService notificationMappingService )
 {
     this.workflowService = workflowService;
     this.processService = processService;
     this.subProcessService= subProcessService;;
     this.classificationService= classificationService;
     this.documentMappingService = documentMappingService;
     this.notificationMappingService = notificationMappingService;
     this.workflowMappingService = workflowMappingService;
     this.nodeService = nodeService;
     this.service = new Service(this.processService, this.subProcessService, this.classificationService);
 }
示例#8
0
 public SubProcessController(ISubProcessService subProcessService, IProcessService processService)
 {
     this.subProcessService = subProcessService;
     this.processService = processService;
     this.service = new Service(this.processService,this.subProcessService);
 }
示例#9
0
 public ProcessController(IProcessService processService, ICommonService commonService)
 {
     this.processService = processService;
     this.commonService = commonService;
     this.service = new Service(commonService);
 }