コード例 #1
0
ファイル: FEServices.asmx.cs プロジェクト: javierlov/FE
        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;
        }
コード例 #2
0
ファイル: FEServices.asmx.cs プロジェクト: javierlov/FE
        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;
        }