Package uk.nhs.interoperability.payloads.templates

Examples of uk.nhs.interoperability.payloads.templates.ChildPatientUniversal.addAddress()


                .setPatientID(fields.getPatientNHSNo())
                .setPatientIDType(idType)
                .setNHSNoTraceStatus(fields.getPatientNHSNoTraceStatus().code));
   
    if (fields.getPatientAddress() != null) {
      template.addAddress(fields.getPatientAddress());
    }
    template.addName(fields.getPatientName());
    template.setGender(fields.getPatientGender());
    template.setDateOfBirth(fields.getPatientBirthDate());
   
View Full Code Here


                .setPatientIDType(PatientIDType.LocalID.code));
    template.addPatientID(new PatientIDWithTraceStatuses()
                .setPatientID("9932541280")
                .setNHSNoTraceStatus(NHSNumberTraceStatus.TraceNeedsToBeResolved.code)
                .setPatientIDType(PatientIDType.UnverifiedNHSNumber.code));
    template.addAddress(new Address()
                .setAddressUse(AddressType.Home.code)
                .addAddressLine("Appleton House")
                .addAddressLine("Lanchester Road")
                .addAddressLine("Grimsby")
                .setPostcode("DN3 1UJ"));
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.