public ActionResult Anular(imp_catalogo_Info model) { if (!bus_catalogo.anularDB(model)) { ViewBag.IdCatalogo_tipo = model.IdCatalogo_tipo; cargar_combos(); return(View(model)); } return(RedirectToAction("Index", new { IdCatalogo_tipo = model.IdCatalogo_tipo })); }
private bool anularDB() { try { bool res = false; if (bus_catalogo.anularDB(info_catalogo)) { MessageBox.Show("Registro anulado 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); } }