Exemple #1
0
 public SmartTaskController(ISmartTaskService smartTaskService, ICustomTaskService customTaskService)
 {
     _smartTaskService  = smartTaskService;
     _customTaskService = customTaskService;
 }
Exemple #2
0
 public CustomTaskController(ICustomTaskService customTaskService)
 {
     _customTaskService = customTaskService;
 }
Exemple #3
0
 public CustomTaskController(ICustomTaskService service, ICustomTaskStatusService customTaskStatusService)
 {
     _service = service;
     _customTaskStatusService = customTaskStatusService;
 }