(ITaskService taskService, IHubContext<BoardHub> hubContext, IAutomationService automationService)
| 19 | private readonly IAutomationService _automationService; |
| 20 | |
| 21 | public TasksController(ITaskService taskService, IHubContext<BoardHub> hubContext, IAutomationService automationService) |
| 22 | { |
| 23 | _taskService = taskService; |
| 24 | _hubContext = hubContext; |
| 25 | _automationService = automationService; |
| 26 | } |
| 27 | |
| 28 | |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected