Ejemplo n.º 1
0
        public IActionResult Excluir(int id)
        {
            var tarefa = _tarefaRepository.ObterPorId(id);

            _tarefaRepository.Excluir(id);
            return(RedirectToAction("Todas", "Tarefa", new { id = tarefa.ProjetoId }));
        }
Ejemplo n.º 2
0
 public bool Excluir(int id)
 {
     try
     {
         if (_tarefaRepository.Excluir(id))
         {
             return(true);
         }
         else
         {
             throw new Exception("Erro ao tentar exluir tarefa");
         }
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
        public ExcluirDto Excluir(long id)
        {
            var tarefa = _tarefaRepository.GetById(id);

            if (tarefa == null)
            {
                return(new ExcluirDto()
                {
                    Id = id,
                    Erro = "Tarefa não encontrada."
                });
            }

            _tarefaRepository.Excluir(tarefa);

            return(new ExcluirDto()
            {
                Id = tarefa.Id
            });
        }
Ejemplo n.º 4
0
 public void Excluir(Tarefa obj) => _tarefaRepository.Excluir(obj);