Esempio n. 1
0
 public Race(EthnicBackground ethnicity)
 {
     owner = ethnicity;
 }
Esempio n. 2
0
 /**************************************************************************************************/
 // This way of creating a person is used to create relatives in the family history
 public Person(FamilyHistory fhx)
 {
     owningFHx = fhx;
     Nationality = new NationalityList(this);
     Ethnicity = new EthnicBackground(this);
     PMH = new PastMedicalHistory(this);
     RP = new RiskProfile(this);
 }
Esempio n. 3
0
        }                 // Default constructor for serialization

        public Race(EthnicBackground ethnicity)
        {
            owner = ethnicity;
        }
Esempio n. 4
0
 /**************************************************************************************************/
 //  This way of creating the person is used to create the patient
 public Person()
 {
     Ethnicity = new EthnicBackground(this);
     Nationality = new NationalityList(this);
     PMH = new PastMedicalHistory(this);
     RP = new RiskProfile(this);
 }