Exemple #1
0
        public static async Task <string> BroInsertarAclaratorios(EBroTextos texto)
        {
            EAdmCatalogoCredenciales credenciales = DAdmCredenciales.AdmConsultarCatalogoCredenciales("INSERTARACLARATORIOS", EGloGlobales.ambiente);

            string url = credenciales.Url + credenciales.Accion + texto.IdPV;

            var body = JsonConvert.SerializeObject(new
            {
                IdPV  = texto.IdPV,
                Texto = texto.Texto
            });

            string resultado = await DAdmConexionREST.GesEjecutarSolicitudWebRESTText(url, body, "POST");

            return(resultado);
        }
Exemple #2
0
        public async Task <string> BroInsertarAclaratorios(EBroTextos texto)
        {
            string resultado = await CBroTextos.BroInsertarAclaratorios(texto);

            return(resultado);
        }
Exemple #3
0
        public static async Task <string> BroInsertarIncisos(EBroTextos texto)
        {
            string resultado = await DPolTextos.BroInsertarIncisos(texto);

            return(resultado);
        }