(int taskId, MoveTaskDto dto, int userId)
| 8 | Task<TaskCardDto> CreateTaskAsync(CreateTaskDto dto, int userId); |
| 9 | Task<TaskCardDto?> UpdateTaskAsync(int taskId, UpdateTaskDto dto, int userId); |
| 10 | Task<TaskCardDto?> MoveTaskAsync(int taskId, MoveTaskDto dto, int userId); |
| 11 | Task<int?> DeleteTaskAsync(int taskId, int userId); // Returns BoardId if successful |
| 12 | |
| 13 | // Subtask Methods |
nothing calls this directly
no outgoing calls
no test coverage detected