コード例 #1
0
 public WorkflowController(IWorkflowService workflowService,
                           IChangeWorkflowService changeWorkflowService,
                           IInvoiceWorkflowService invoiceWorkflowService)
 {
     this.workflowService        = workflowService;
     this.changeWorkflowService  = changeWorkflowService;
     this.invoiceWorkflowService = invoiceWorkflowService;
 }
コード例 #2
0
 public WorkflowDesignController(IWorkflowService workflowService,
                                 IRolesService rolesService,
                                 IInvoiceWorkflowService invoiceWorkflowService,
                                 IChangeWorkflowService changeWorkflowService)
 {
     this.workflowService        = workflowService;
     this.rolesService           = rolesService;
     this.invoiceWorkflowService = invoiceWorkflowService;
     this.changeWorkflowService  = changeWorkflowService;
 }