private bool ShowGrossEntryPage()
        {
            bool result = false;

            if (this.m_AccessionOrder.PanelSetOrderCollection.Exists(81) == true &&
                this.m_AccessionOrder.PanelSetOrderCollection.HasSurgical() == true)
            {
                result = true;
                YellowstonePathology.UI.Login.FinalizeAccession.GrossEntryPage grossEntryPage = new FinalizeAccession.GrossEntryPage(this.m_AccessionOrder);
                grossEntryPage.Back += new GrossEntryPage.BackEventHandler(GrossEntryPage_Back);
                grossEntryPage.Next += new GrossEntryPage.NextEventHandler(GrossEntryPage_Next);
                this.m_PageNavigator.Navigate(grossEntryPage);
            }
            return(result);
        }
 private bool ShowGrossEntryPage()
 {
     bool result = false;
     if (this.m_AccessionOrder.PanelSetOrderCollection.Exists(81) == true &&
         this.m_AccessionOrder.PanelSetOrderCollection.HasSurgical() == true)
     {
         result = true;
         YellowstonePathology.UI.Login.FinalizeAccession.GrossEntryPage grossEntryPage = new FinalizeAccession.GrossEntryPage(this.m_AccessionOrder);
         grossEntryPage.Back += new GrossEntryPage.BackEventHandler(GrossEntryPage_Back);
         grossEntryPage.Next += new GrossEntryPage.NextEventHandler(GrossEntryPage_Next);
         this.m_PageNavigator.Navigate(grossEntryPage);
     }
     return result;
 }
Example #3
0
 private void AccessionOrderPage_ShowSurgicalGrossDescription(object sender, EventArgs e)
 {
     YellowstonePathology.UI.Login.FinalizeAccession.GrossEntryPage grossEntryPage = new FinalizeAccession.GrossEntryPage(this.m_AccessionOrder);
     grossEntryPage.Next += new FinalizeAccession.GrossEntryPage.NextEventHandler(GrossEntryPage_Next);
     this.m_PageNavigator.Navigate(grossEntryPage);
 }
Example #4
0
 private void AccessionOrderPage_ShowSurgicalGrossDescription(object sender, EventArgs e)
 {
     YellowstonePathology.UI.Login.FinalizeAccession.GrossEntryPage grossEntryPage = new FinalizeAccession.GrossEntryPage(this.m_AccessionOrder);
     grossEntryPage.Next += new FinalizeAccession.GrossEntryPage.NextEventHandler(GrossEntryPage_Next);
     this.m_PageNavigator.Navigate(grossEntryPage);
 }