Ejemplo n.º 1
0
        public string ReprocesarLoteFacturasExportacion(string EmpresaID, RequestBatch documentBatch)
        {
            ResponseBatch responseBatch = new ResponseBatch();
            try
            {
                string result = ProcesarLoteFacturasBienesServicios(EmpresaID, documentBatch.GetXMLString());
                responseBatch.LoadXMLString(result);
            }
            catch (Exception ex)
            {
                responseBatch.MensajeError = ex.Message;
            }

            return string.Empty;
        }
Ejemplo n.º 2
0
        public ResponseBatch ProcesarLoteFacturasExportacionObj(string EmpresaID, RequestBatch documentBatch)
        {
            ResponseBatch responseBatch = new ResponseBatch();
            try
            {
                string result = ProcesarLoteFacturasExportacion(EmpresaID, documentBatch.GetXMLString());
                responseBatch.LoadXMLString(result);
            }
            catch (Exception ex)
            {
                responseBatch.MensajeError = ex.Message;
            }

            return responseBatch;
        }