public WorkflowController(IWorkflowService workflowService,
                           IChangeWorkflowService changeWorkflowService,
                           IInvoiceWorkflowService invoiceWorkflowService)
 {
     this.workflowService        = workflowService;
     this.changeWorkflowService  = changeWorkflowService;
     this.invoiceWorkflowService = invoiceWorkflowService;
 }
 public WorkflowDesignController(IWorkflowService workflowService,
                                 IRolesService rolesService,
                                 IInvoiceWorkflowService invoiceWorkflowService,
                                 IChangeWorkflowService changeWorkflowService)
 {
     this.workflowService        = workflowService;
     this.rolesService           = rolesService;
     this.invoiceWorkflowService = invoiceWorkflowService;
     this.changeWorkflowService  = changeWorkflowService;
 }
Exemplo n.º 3
0
 public InvoicesController(IInvoicesService invoicesService, IInvoiceWorkflowService workflowService)
 {
     this.invoicesService = invoicesService;
     this.workflowService = workflowService;
 }