示例#1
0
        private bool ShowCytologyClinicalHistoryPage()
        {
            bool result = false;

            if (this.m_AccessionOrder.PanelSetOrderCollection.GetPanelSetOrder(this.m_ReportNo).PanelSetId == 15)
            {
                CytologyClinicalHistoryPage cytologyClinicalHistoryPage = new CytologyClinicalHistoryPage(this.m_AccessionOrder);
                cytologyClinicalHistoryPage.Return += new CytologyClinicalHistoryPage.ReturnEventHandler(CytologyClinicalHistoryPage_Return);
                this.m_PageNavigator.Navigate(cytologyClinicalHistoryPage);
                result = true;
            }
            return(result);
        }
 private bool ShowCytologyClinicalHistoryPage()
 {
     bool result = false;
     if (this.m_AccessionOrder.PanelSetOrderCollection.GetPanelSetOrder(this.m_ReportNo).PanelSetId == 15)
     {
         CytologyClinicalHistoryPage cytologyClinicalHistoryPage = new CytologyClinicalHistoryPage(this.m_AccessionOrder);
         cytologyClinicalHistoryPage.Return += new CytologyClinicalHistoryPage.ReturnEventHandler(CytologyClinicalHistoryPage_Return);
         this.m_PageNavigator.Navigate(cytologyClinicalHistoryPage);
         result = true;
     }
     return result;
 }