public ActionResult ExlcuirTime(int id) { try { _repTime = new Rep.TimeRepositorio(); if (_repTime.ExcluirTime(id)) { ViewBag.Mensagem = "Time excluido"; } return(RedirectToAction("ObterTodos")); } catch (Exception e) { return(View(ObterTodos())); } }