gov.va.medora.mdws.dto.PatientMedicalRecordTO.initCollections C# (CSharp) Method

initCollections() private method

private initCollections ( ) : void
return void
        private void initCollections()
        {
            ContinuityOfCareDocuments = new TaggedTextArray();
            Patient = new PatientTO();
            Meds = new TaggedMedicationArrays();
            Allergies = new TaggedAllergyArrays();
            Appointments = new TaggedAppointmentArrays();
            Notes = new TaggedNoteArrays();
            ChemHemReports = new TaggedChemHemRptArrays();
            MicroReports = new TaggedMicrobiologyRptArrays();
            Problems = new TaggedProblemArrays();
            RadiologyReports = new TaggedRadiologyReportArrays();
            SurgeryReports = new TaggedSurgeryReportArrays();
            Vitals = new TaggedVitalSignArrays();
        }