ProblemsPopulator(PatientExport patientExport) { bodyConstants = Problems.getConstants(); if (patientExport.isLoaded()) { allProblems = patientExport.getProblems(); } problems = new ArrayList<Dxresearch>(); if (allProblems != null) { for (Dxresearch problem : allProblems) { if (problem.getStatus() != 'D' && problem.getCodingSystem().equalsIgnoreCase("icd9")) { this.problems.add(problem); } } } }
RecordTargetPopulator(PatientExport patientExport) { recordTargetModel = new RecordTargetModel(patientExport.getDemographic()); }