Exemple #1
0
 public FeaEntidades.InterFacturas.lote_comprobantes Consultar(FeaEntidades.InterFacturas.consulta_lote_comprobantes consultalotecomprobantes, out List<FeaEntidades.InterFacturas.error> RespErroresLote, out List<FeaEntidades.InterFacturas.error> RespErroresComprobantes)
 {
     List<FeaEntidades.InterFacturas.error> respErroresLote;
     List<FeaEntidades.InterFacturas.error> respErroresComprobantes;
     try
     {
         eFact_C.Comprobante c = new eFact_C.Comprobante();
         eFact_C.IBK.consulta_lote_comprobantes clc = new eFact_C.IBK.consulta_lote_comprobantes();
         clc.cuit_canal = consultalotecomprobantes.cuit_canal;
         clc.cuit_vendedor = consultalotecomprobantes.cuit_vendedor;
         clc.punto_de_venta = consultalotecomprobantes.punto_de_venta;
         clc.punto_de_ventaSpecified = true;
         clc.id_lote = consultalotecomprobantes.id_lote;
         FeaEntidades.InterFacturas.lote_comprobantes lc;
         lc = c.ConsultarIBK(out respErroresLote, out respErroresComprobantes, clc, uRL, certificado, proxy);
         RespErroresLote = respErroresLote;
         RespErroresComprobantes = respErroresComprobantes;
         return lc;
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message, ex);
     }
 }
Exemple #2
0
 public FeaEntidades.InterFacturas.lote_response Enviar(FeaEntidades.InterFacturas.lote_comprobantes Lc, out List<FeaEntidades.InterFacturas.error> RespErroresLote, out List<FeaEntidades.InterFacturas.error> RespErroresComprobantes)
 {
     List<FeaEntidades.InterFacturas.error> respErroresLote;
     List<FeaEntidades.InterFacturas.error> respErroresComprobantes;
     try
     {
         eFact_C.Comprobante c = new eFact_C.Comprobante();
         FeaEntidades.InterFacturas.lote_response loteResponse;
         loteResponse = c.EnviarIBK(out respErroresLote, out respErroresComprobantes, Lc, uRL, certificado, proxy);
         RespErroresLote = respErroresLote;
         RespErroresComprobantes = respErroresComprobantes;
         return loteResponse;
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message, ex);
     }
 }