Exemple #1
0
        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);
            }
        }