if (fields.getHearingScreeningOutcome() == null) {
return null;
}
NewBornHearingScreening template = new NewBornHearingScreening();
template.setId(CDAUUID.generateUUIDString());
template.setScreeningOutcome(fields.getHearingScreeningOutcome());
template.setAudiologyTestFinding(fields.getAudiologyTestFinding());
template.setAudiologyReferralTime(fields.getAudiologyReferralTime());
return template;
}