/**************************************************************************************************/ // 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); }
/**************************************************************************************************/ // 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); }