public void Registro_SMS(string text, string id_perfil)
        {
            SMSBL objSMS;

            try
            {
                objSMS = new SMSBL();
                objSMS.Registro_SMS(text, id_perfil);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        public List <SP_PerfilesEmpresaResult> Lista_PerfilesEmpresa(int idEmpresa)
        {
            SMSBL objSMS;

            try
            {
                objSMS = new SMSBL();
                return(objSMS.Lista_PerfilesEmpresa(idEmpresa));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }