private bool ShowSurgicalDiagnosisPage()
        {
            bool result = false;

            if (this.m_AccessionOrder.PanelSetOrderCollection.HasSurgical() == true)
            {
                YellowstonePathology.UI.Login.ReceiveSpecimen.SurgicalDiagnosisPage surgicalDiagnosisPage = new ReceiveSpecimen.SurgicalDiagnosisPage(this.m_AccessionOrder);
                surgicalDiagnosisPage.Return += new ReceiveSpecimen.SurgicalDiagnosisPage.ReturnEventHandler(SurgicalDiagnosisPage_Return);
                this.m_PageNavigator.Navigate(surgicalDiagnosisPage);
                result = true;
            }
            return(result);
        }
 private bool ShowSurgicalDiagnosisPage()
 {
     bool result = false;
     if (this.m_AccessionOrder.PanelSetOrderCollection.HasSurgical() == true)
     {
         YellowstonePathology.UI.Login.ReceiveSpecimen.SurgicalDiagnosisPage surgicalDiagnosisPage = new ReceiveSpecimen.SurgicalDiagnosisPage(this.m_AccessionOrder);
         surgicalDiagnosisPage.Return += new ReceiveSpecimen.SurgicalDiagnosisPage.ReturnEventHandler(SurgicalDiagnosisPage_Return);
         this.m_PageNavigator.Navigate(surgicalDiagnosisPage);
         result = true;
     }
     return result;
 }