예제 #1
0
        public SearchUI()
        {
            this.m_SearchList = new SearchList();
            this.m_SearchListCollectionView    = new ListCollectionView(this.m_SearchList);
            this.m_PhysicianClientCollection   = new Client.PhysicianClientCollection();
            this.m_RDPhysicianClientCollection = new Client.PhysicianClientCollection();
            this.m_PatientHistoryList          = new YellowstonePathology.Business.Patient.Model.PatientHistoryList();

            this.m_ResultList = new SearchResultList();
        }
예제 #2
0
 public void GetPhysicianClientCollection(string physicianLastName)
 {
     this.m_PhysicianClientCollection = YellowstonePathology.Business.Gateway.PhysicianClientGateway.GetPhysicianClientListByPhysicianLastNameV2(physicianLastName);
     this.NotifyPropertyChanged("PhysicianClientCollection");
 }