Examples of NewBornHearingScreening


Examples of uk.nhs.interoperability.payloads.templates.NewBornHearingScreening

      missingFields.addMissingFields(e);
    }
   
    // Hearing Screening
    try {
      NewBornHearingScreening hearing = createHearingScreening(childScreeningFields);
      if (hearing != null) {
        template.addCodedSections(new CodedSections(hearing));
      }
    } catch (MissingMandatoryFieldException e) {
      missingFields.addMissingFields(e);
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.NewBornHearingScreening

   
    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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.