private void ReconstructPatient() { var personFactory = new PersonFactory(); var patientInfo = xml.patientInfo; var insurance = ReconstructInsurance(patientInfo); patient = personFactory.CreatePatient(patientInfo[0][0], patientInfo[1][0], patientInfo[2][0], insurance); }