Examples of addOrganisationTelephone()


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

       template.setOrganisationId(new OrgID(OrgIDType.ODSOrgID.code, fields.getProviderOrganisationODSID()));
      template.setOrganisationName(fields.getProviderOrganisation());
      template.setOrganisationType(fields.getProviderOrganisationType());
     
      if (providerOrganisationTelephone) {
        template.addOrganisationTelephone(new Telecom()
                          .setTelecom("tel:" + fields.getProviderOrganisationTelephone())
                          .setTelecomType(TelecomUseType.WorkPlace.code));
      }
     
      if (providerOrganisationAddress) {
View Full Code Here

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

    template.addGuardian(guardian);
   
    // Provider Organisation
    template.setOrganisationId(new OrgID().setID("V396F"));
    template.setOrganisationName("Dr De Hopper and Partners");
    template.addOrganisationTelephone(new Telecom()
                        .setTelecom("tel:01634111222")
                        .setTelecomType(TelecomUseType.WorkPlace.code));
    template.setOrganisationAddress(new Address()
                      .addAddressLine("Freshney Green PCC")
                      .addAddressLine("Grimsby")
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.