Ejemplo n.º 1
0
 public PatientListEntryTO(PatientListEntry mdo)
 {
     this.listId      = mdo.ListId;
     this.patientName = mdo.PatientName;
     this.patientId   = mdo.PatientId;
     this.ssn         = mdo.SSN;
 }
Ejemplo n.º 2
0
        private void fastObjectListView1_SelectionChanged(object sender, EventArgs e)
        {
            PatientListEntry ple = (PatientListEntry)fastObjectListView1.SelectedObject;

            if (ple != null)
            {
                SessionManager.Instance.SetActivePatient(ple.unitnum, -1);
            }
        }