Exemple #1
0
        private void ShowBillingPage(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_BillingPage                        = new BillingPage(this.m_ReportSearchList.CurrentReportSearchItem.ReportNo, accessionOrder);
            this.m_BillingPage.Next                  += new BillingPage.NextEventHandler(BillingPage_Next);
            this.m_BillingPage.Back                  += new BillingPage.BackEventHandler(BillingPage_Back);
            this.m_BillingPage.Close                 += new BillingPage.CloseEventHandler(BillingPage_Close);
            this.m_BillingPage.ShowXPSDocument       += new BillingPage.ShowXPSDocumentEventHandler(BillingPage_ShowXPSDocument);
            this.m_BillingPage.ShowTIFDocument       += new BillingPage.ShowTIFDocumentEventHandler(BillingPage_ShowTIFDocument);
            this.m_BillingPage.ShowICDCodeEntry      += new BillingPage.ShowICDCodeEntryEventHandler(BillingPage_ShowICDCodeEntry);
            this.m_BillingPage.ShowCPTCodeEntry      += new BillingPage.ShowCPTCodeEntryEventHandler(BillingPage_ShowCPTCodeEntry);
            this.m_BillingPage.ShowPatientDetailPage += new BillingPage.ShowPatientDetailPageEventHandler(BillingPage_ShowPatientDetailPage);

            if (this.m_BillingWindowPrimary.PageNavigator.HasDualMonitors() == true)
            {
                this.m_BillingWindowSecondary.PageNavigator.ClearCurrentPage();
            }

            this.m_BillingWindowPrimary.PageNavigator.Navigate(this.m_BillingPage);
        }
Exemple #2
0
        private void ShowBillingPage(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_BillingPage = new BillingPage(this.m_ReportSearchList.CurrentReportSearchItem.ReportNo, accessionOrder);
            this.m_BillingPage.Next += new BillingPage.NextEventHandler(BillingPage_Next);
            this.m_BillingPage.Back += new BillingPage.BackEventHandler(BillingPage_Back);
            this.m_BillingPage.Close += new BillingPage.CloseEventHandler(BillingPage_Close);
            this.m_BillingPage.ShowXPSDocument += new BillingPage.ShowXPSDocumentEventHandler(BillingPage_ShowXPSDocument);
            this.m_BillingPage.ShowTIFDocument += new BillingPage.ShowTIFDocumentEventHandler(BillingPage_ShowTIFDocument);
            this.m_BillingPage.ShowICDCodeEntry += new BillingPage.ShowICDCodeEntryEventHandler(BillingPage_ShowICDCodeEntry);
            this.m_BillingPage.ShowCPTCodeEntry += new BillingPage.ShowCPTCodeEntryEventHandler(BillingPage_ShowCPTCodeEntry);
            this.m_BillingPage.ShowPatientDetailPage += new BillingPage.ShowPatientDetailPageEventHandler(BillingPage_ShowPatientDetailPage);

            if (this.m_BillingWindowPrimary.PageNavigator.HasDualMonitors() == true)
            {
                this.m_BillingWindowSecondary.PageNavigator.ClearCurrentPage();
            }

            this.m_BillingWindowPrimary.PageNavigator.Navigate(this.m_BillingPage);
        }