public bool Insertar(PerfilesBE e_Perfiles) { try { PerfilesDA o_Perfiles = new PerfilesDA(m_BaseDatos); int resp = o_Perfiles.Insertar(e_Perfiles); return(resp > 0); } catch (Exception ex) { throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message); } }
public bool Insertar(PerfilesBE e_PERFIL, ref String out_sms) { if (ValidarInsertar(e_PERFIL, ref out_sms) == false) { return(false); } try { PerfilesDA o_PERFIL = new PerfilesDA(); int resp = o_PERFIL.Insertar(e_PERFIL); return(resp > 0); } catch (Exception ex) { out_sms = "Ocurrió un error al insertar registro"; throw new Exception("Clase Business: " + Nombre_Clase + "\r\n" + "Descripción: " + ex.Message); } }