Beispiel #1
0
 public async Task <IActionResult> MoveToSprint([FromBody] TaskMoveModel model)
 {
     return(Ok(await _mediator.Send(new MoveToSprintCommand(model))));
 }
Beispiel #2
0
 public MoveToSprintCommand(TaskMoveModel task)
 {
     Task = task;
 }