public bool Insertar(ModulosBE e_Modulos) { try { ModulosDA o_Modulos = new ModulosDA(m_BaseDatos); int resp = o_Modulos.Insertar(e_Modulos); return(resp > 0); } catch (Exception ex) { throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message); } }
public List <ModulosBE> Consultar_Lista() { List <ModulosBE> lista = new List <ModulosBE>(); try { ModulosDA o_Modulos = new ModulosDA(m_BaseDatos); return(o_Modulos.Consultar_Lista()); } catch (Exception ex) { throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message); } }
public bool Insertar(ModulosBE e_Modulo, ref String out_sms_err) { if (ValidarActualizar(e_Modulo, ref out_sms_err) == false) { return(false); } try { ModulosDA o_Modulos = new ModulosDA(); int resp = o_Modulos.Insertar(e_Modulo); return(resp > 0); } catch (Exception ex) { throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message); } }