示例#1
0
        }                   // Default constructor for serialization

        public Nation(NationalityList nations)
        {
            owner = nations;
        }
示例#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);
 }
示例#3
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);
 }
示例#4
0
 public Nation(NationalityList nations)
 {
     owner = nations;
 }