コード例 #1
0
 public ActionResult EditarTarefa(int id, Tarefas tarefaObj)
 {
     try
     {
         _repositorio = new TarefaRepositorio();
         _repositorio.AtualizarTarefa(tarefaObj);
         return(RedirectToAction("ObterTarefas"));
     }
     catch (Exception)
     {
         return(View("ObterTarefas"));
     }
 }