public ActionResult Modificar(imp_catalogo_Info model) { if (!bus_catalogo.modificarDB(model)) { ViewBag.IdCatalogo_tipo = model.IdCatalogo_tipo; cargar_combos(); return(View(model)); } return(RedirectToAction("Index", new { IdCatalogo_tipo = model.IdCatalogo_tipo })); }
private bool modificarDB() { try { bool res = false; if (bus_catalogo.modificarDB(info_catalogo)) { MessageBox.Show("Registro modificado exitósamente", param.Nombre_sistema, MessageBoxButtons.OK, MessageBoxIcon.Asterisk); res = true; } return(res); } catch (Exception ex) { Log_Error_bus.Log_Error(ex.ToString()); MessageBox.Show(ex.ToString(), param.Nombre_sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); return(false); } }