public static DocumentoSalida PeticionCatalogo(XmlDocument doc)
 {
     Localhost.Elegrp ws = new Localhost.Elegrp();
     ws.Timeout = -1;
     string respuesta = ws.PeticionCatalogo(doc);
     return new DocumentoSalida(respuesta);
 }
        private static DocumentoSalida PeticionCatalogo(XmlDocument doc)
        {
            Localhost.Elegrp ws = new Localhost.Elegrp
            {
                Timeout = -1
            };
            string respuesta = ws.PeticionCatalogo(doc);

            return(new DocumentoSalida(respuesta));
        }