private ActionResult GetView(int?codEstado) { try { var daoEstados = new DAOEstados(); var model = daoEstados.GetEstado(codEstado); return(View(model)); } catch (Exception ex) { this.AddFlashMessage(ex.Message, FlashMessage.ERROR); return(View()); } }