public GxReportBuilderPdf(string appPath, Stream outputStream)
 {
     _appPath = appPath;
     {
         _pdfReport = new com.genexus.reports.PDFReportItextSharp(appPath);
     }
     if (outputStream != null)
     {
         _pdfReport.setOutputStream(outputStream);
         GXLogging.Debug(log, "GxReportBuilderPdf outputStream: binaryWriter");
     }
 }