public Tarefa Incluir(Tarefa tarefa) { var repositorioTarefa = new TarefaRepositorio(); var tarefaNova = repositorioTarefa.Inserir(tarefa); return tarefaNova; }
public static TarefaModel Criar(Tarefa tarefa) { return new TarefaModel() { Id = tarefa.Id, Titulo = tarefa.Titulo, Concluido = tarefa.Concluido, DataInclusao = tarefa.DataInclusao, DataAlteracao = tarefa.DataAlteracao }; }
public void Alterar(Tarefa tarefa) { var repositorioTarefa = new TarefaRepositorio(); var tarefaAtual = repositorioTarefa.ConsultarPorId(tarefa.Id); tarefaAtual.Titulo = tarefa.Titulo.Trim(); tarefaAtual.Concluido = tarefa.Concluido; tarefaAtual.DataAlteracao = DateTime.Now; repositorioTarefa.Alterar(tarefaAtual); }