Example #1
0
 public static bool ImprimirComprobante(string pTipoComprobante, string pNroComprobante)
 {
     try
     {
         ServiceReferenceDLL.ServiceSoapClient objServicio = Instacia();
         objServicio.ImprimirComprobante(pTipoComprobante, pNroComprobante);
         return(true);
     }
     catch (Exception ex)
     {
         FuncionesPersonalizadas.grabarLog(MethodBase.GetCurrentMethod(), ex, DateTime.Now, pTipoComprobante, pNroComprobante);
         return(false);
     }
 }