public BillingReport(XElement reportData)
        {
            this.m_ReportData = reportData;

            YellowstonePathology.Document.Xps.PlainHeader header = new YellowstonePathology.Document.Xps.PlainHeader("Billing Report");
            NoFooter footer = new NoFooter();
            this.m_ReportDocument = new ReportDocument(header, footer);

            WriteDocument();
        }
Exemple #2
0
        public BillingReport(XElement reportData)
        {
            this.m_ReportData = reportData;

            YellowstonePathology.Document.Xps.PlainHeader header = new YellowstonePathology.Document.Xps.PlainHeader("Billing Report");
            NoFooter footer = new NoFooter();

            this.m_ReportDocument = new ReportDocument(header, footer);

            WriteDocument();
        }