public async Task UpdateTarefa([FromBody] CadastroTarefaModel _tarefa) { var tarefa = await tarefaRepository.GetTarefa(_tarefa.IdTarefa); var lista = await listaRepository.GetLista(_tarefa.IdLista); tarefa.TarefaSetCampos(_tarefa.Nome, _tarefa.Descricao, _tarefa.Status, lista); await tarefaRepository.UpdateTarefa(tarefa); }