コード例 #1
0
 public IActionResult GetAll([FromServices] TarefasService tarefas)
 {
     return(Ok(tarefas.GetTarefas()));
 }
コード例 #2
0
 public IActionResult GetAll(Guid id, [FromServices] TarefasService tarefas)
 {
     return(Ok(tarefas.GetTarefasById(id)));
 }
コード例 #3
0
 public TarefasController()
 {
     this.TarefasService        = new TarefasService();
     this.ListaDeTarefasService = new ListaTarefasService();
     this.PrioridadesService    = new PrioridadesService();
 }