Beispiel #1
0
        public void ShowPrintBlockPage(YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder)
        {
            PrintBlockPage printBlockPage = new PrintBlockPage(this.m_SystemIdentity, this.m_AccessionOrder, specimenOrder);

            printBlockPage.Next               += new PrintBlockPage.NextEventHandler(PrintBlockPage_Next);
            printBlockPage.ShowBlockOptions   += new PrintBlockPage.ShowBlockOptionsEventHandler(PrintBlockPage_ShowBlockOptions);
            printBlockPage.ShowStainOrderPage += new PrintBlockPage.ShowStainOrderPageEventHandler(PrintBlockPage_ShowStainOrderPage);
            this.m_HistologyGrossDialog.PageNavigator.Navigate(printBlockPage);
        }
 public void ShowPrintBlockPage(YellowstonePathology.Business.Specimen.Model.SpecimenOrder specimenOrder)
 {
     PrintBlockPage printBlockPage = new PrintBlockPage(this.m_SystemIdentity, this.m_AccessionOrder, specimenOrder);
     printBlockPage.Next += new PrintBlockPage.NextEventHandler(PrintBlockPage_Next);
     printBlockPage.ShowBlockOptions += new PrintBlockPage.ShowBlockOptionsEventHandler(PrintBlockPage_ShowBlockOptions);
     printBlockPage.ShowStainOrderPage += new PrintBlockPage.ShowStainOrderPageEventHandler(PrintBlockPage_ShowStainOrderPage);
     printBlockPage.ShowProcessorSelectionPage += new PrintBlockPage.ShowProcessorSelectionPageEventHandler(PrintBlockPage_ShowProcessorSelectionPage);
     this.m_HistologyGrossDialog.PageNavigator.Navigate(printBlockPage);
 }