private bool StartInvasiveBreastPanelPath()
        {
            bool result = false;
            YellowstonePathology.Business.Test.InvasiveBreastPanel.InvasiveBreastPanelTest panelSet = new YellowstonePathology.Business.Test.InvasiveBreastPanel.InvasiveBreastPanelTest();
            if (this.m_AccessionOrder.PanelSetOrderCollection.Exists(panelSet.PanelSetId, this.m_PanelSetOrder.OrderedOnId, true) == true)
            {
                YellowstonePathology.Business.Test.PanelSetOrder panelSetOrder = this.m_AccessionOrder.PanelSetOrderCollection.GetPanelSetOrder(panelSet.PanelSetId, this.m_PanelSetOrder.OrderedOnId, true);
                result = true;
                InvasiveBreastPanelPath invasiveBreastPanelPath = new InvasiveBreastPanelPath(panelSetOrder.ReportNo, this.m_AccessionOrder, this.m_PageNavigator, this.m_Window);
                invasiveBreastPanelPath.Finish += new InvasiveBreastPanelPath.FinishEventHandler(InvasiveBreastPanelPath_Finish);
                invasiveBreastPanelPath.Start();
            }

            return result;
        }
Exemple #2
0
        private bool StartInvasiveBreastPanelPath()
        {
            bool result = false;

            YellowstonePathology.Business.Test.InvasiveBreastPanel.InvasiveBreastPanelTest panelSet = new YellowstonePathology.Business.Test.InvasiveBreastPanel.InvasiveBreastPanelTest();
            if (this.m_AccessionOrder.PanelSetOrderCollection.Exists(panelSet.PanelSetId, this.m_PanelSetOrder.OrderedOnId, true) == true)
            {
                YellowstonePathology.Business.Test.PanelSetOrder panelSetOrder = this.m_AccessionOrder.PanelSetOrderCollection.GetPanelSetOrder(panelSet.PanelSetId, this.m_PanelSetOrder.OrderedOnId, true);
                result = true;
                InvasiveBreastPanelPath invasiveBreastPanelPath = new InvasiveBreastPanelPath(panelSetOrder.ReportNo, this.m_AccessionOrder, this.m_PageNavigator, this.m_Window);
                invasiveBreastPanelPath.Finish += new InvasiveBreastPanelPath.FinishEventHandler(InvasiveBreastPanelPath_Finish);
                invasiveBreastPanelPath.Start();
            }

            return(result);
        }