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; }
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; }