/// <summary>
 ///     Default constructor.
 /// </summary>
 public PatientMedicalHistoryProfile()
 {
     MedicalConditions   = new List <CustomCode>();
     InfantData          = new NewbornRecord();
     MedicationAllergies = new List <PatientAllergyItem>();
     Surgeries           = new List <SurgeryRecord>();
     Medications         = new List <CustomCode>();
 }
 public IntakeQuestionnaire()
 {
     MedicationAllergies = new List <PatientAllergyItem>();
     Surgeries           = new List <SurgeryRecord>();
     MedicalConditions   = new List <CustomCode>();
     Medications         = new List <CustomCode>();
     InfantData          = new NewbornRecord();
     Concerns            = new List <EncounterConcern>();
     GuardiansRecords    = new List <GuardianRecord>();
 }