public async Task CreateTarefa([FromBody] CadastroTarefaModel _tarefa) { var lista = await listaRepository.GetLista(_tarefa.IdLista); var tarefa = new Tarefa(_tarefa.Nome, _tarefa.Descricao, _tarefa.Status, lista); await tarefaRepository.CreateTarefa(tarefa); }