Ejemplo n.º 1
0
        private void ShowPatientLinkingPage()
        {
            YellowstonePathology.Business.Patient.Model.PatientLinker patientLinker = new Business.Patient.Model.PatientLinker(this.m_AccessionOrder.MasterAccessionNo,
                                                                                                                               this.m_ReportNo,
                                                                                                                               this.m_AccessionOrder.PFirstName,
                                                                                                                               this.m_AccessionOrder.PLastName,
                                                                                                                               this.m_AccessionOrder.PMiddleInitial,
                                                                                                                               this.m_AccessionOrder.PSSN,
                                                                                                                               this.m_AccessionOrder.PatientId, this.m_AccessionOrder.PBirthdate);
            PatientLinkingPage patientLinkingPage = new PatientLinkingPage(this.m_AccessionOrder, true, Business.Patient.Model.PatientLinkingListModeEnum.AccessionOrder, patientLinker);

            patientLinkingPage.Return += new PatientLinkingPage.ReturnEventHandler(PatientLinkingPage_Return);
            this.m_PageNavigator.Navigate(patientLinkingPage);
        }
Ejemplo n.º 2
0
 private void ShowPatientLinkingPage()
 {
     YellowstonePathology.Business.Patient.Model.PatientLinker patientLinker = new Business.Patient.Model.PatientLinker(this.m_AccessionOrder.MasterAccessionNo,
         this.m_ReportNo,
         this.m_AccessionOrder.PFirstName,
         this.m_AccessionOrder.PLastName,
         this.m_AccessionOrder.PMiddleInitial,
         this.m_AccessionOrder.PSSN,
         this.m_AccessionOrder.PatientId, this.m_AccessionOrder.PBirthdate);
     PatientLinkingPage patientLinkingPage = new PatientLinkingPage(this.m_AccessionOrder, true, Business.Patient.Model.PatientLinkingListModeEnum.AccessionOrder, patientLinker);
     patientLinkingPage.Return += new PatientLinkingPage.ReturnEventHandler(PatientLinkingPage_Return);
     this.m_PageNavigator.Navigate(patientLinkingPage);
 }