Пример #1
0
        public CaseHistoryDialog(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_CaseHistoryPage = new CaseHistoryPage(accessionOrder);

            InitializeComponent();

            this.TextBoxPatientName.Text = accessionOrder.PatientDisplayName;
            this.HistoryControl.Content  = this.m_CaseHistoryPage;
        }
        public CaseHistoryDialog(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_CaseHistoryPage = new CaseHistoryPage(accessionOrder);

            InitializeComponent();

            this.TextBoxPatientName.Text = accessionOrder.PatientDisplayName;
            this.HistoryControl.Content = this.m_CaseHistoryPage;
        }
Пример #3
0
        public CommonHistory(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_AccessionOrder = accessionOrder;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.m_AccessionOrder);

            InitializeComponent();

            this.DataContext = this;
            this.HistoryControl.Content = this.m_CaseHistoryPage;
        }
Пример #4
0
        public SurgicalHistory(PathologistUI pathologistUI)
        {
            this.m_PathologistUI = pathologistUI;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.AccessionOrder);

            InitializeComponent();

            this.DataContext = this;
            this.HistoryControl.Content = this.m_CaseHistoryPage;
        }
Пример #5
0
        public CommonHistory(YellowstonePathology.Business.Test.AccessionOrder accessionOrder)
        {
            this.m_AccessionOrder  = accessionOrder;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.m_AccessionOrder);

            InitializeComponent();

            this.DataContext            = this;
            this.HistoryControl.Content = this.m_CaseHistoryPage;
        }
Пример #6
0
        public SurgicalHistory(PathologistUI pathologistUI)
        {
            this.m_PathologistUI   = pathologistUI;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.AccessionOrder);

            InitializeComponent();

            this.DataContext            = this;
            this.HistoryControl.Content = this.m_CaseHistoryPage;
        }
Пример #7
0
        public PatientHistoryPage(YellowstonePathology.Business.Test.AccessionOrder accessionOrder, string message)
        {
            this.m_AccessionOrder = accessionOrder;
            this.m_Message = message;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.m_AccessionOrder);
            this.m_PageHeaderText = this.m_AccessionOrder.PatientDisplayName;

            InitializeComponent();

            this.HistoryControl.Content = this.m_CaseHistoryPage;
            DataContext = this;
            Loaded += new RoutedEventHandler(PatientHistoryPage_Loaded);
        }
Пример #8
0
        public PatientHistoryPage(YellowstonePathology.Business.Test.AccessionOrder accessionOrder, string message)
        {
            this.m_AccessionOrder  = accessionOrder;
            this.m_Message         = message;
            this.m_CaseHistoryPage = new Common.CaseHistoryPage(this.m_AccessionOrder);
            this.m_PageHeaderText  = this.m_AccessionOrder.PatientDisplayName;

            InitializeComponent();

            this.HistoryControl.Content = this.m_CaseHistoryPage;
            DataContext = this;
            Loaded     += new RoutedEventHandler(PatientHistoryPage_Loaded);
        }