コード例 #1
0
ファイル: Person.cs プロジェクト: mahitosh/HRA4
 /**************************************************************************************************/
 // 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);
 }
コード例 #2
0
ファイル: Person.cs プロジェクト: mahitosh/HRA4
 /**************************************************************************************************/
 //  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);
 }