public ActionResult Deletar(int idTarefa) { try { _TarefaService.Remove(idTarefa); return(RedirectToAction("../Home/" + nameof(HomeController.Index))); } catch (IntegrityException e) { return(RedirectToAction(nameof(Error), new { menssagem = e.Message })); } }
public void Delete(int id) { _tarefaService.Remove(id); }