public PatientListEntryTO(PatientListEntry mdo) { this.listId = mdo.ListId; this.patientName = mdo.PatientName; this.patientId = mdo.PatientId; this.ssn = mdo.SSN; }
private void fastObjectListView1_SelectionChanged(object sender, EventArgs e) { PatientListEntry ple = (PatientListEntry)fastObjectListView1.SelectedObject; if (ple != null) { SessionManager.Instance.SetActivePatient(ple.unitnum, -1); } }