public SmartTaskController(ISmartTaskService smartTaskService, ICustomTaskService customTaskService) { _smartTaskService = smartTaskService; _customTaskService = customTaskService; }
public CustomTaskController(ICustomTaskService customTaskService) { _customTaskService = customTaskService; }
public CustomTaskController(ICustomTaskService service, ICustomTaskStatusService customTaskStatusService) { _service = service; _customTaskStatusService = customTaskStatusService; }