.setGuardianName(new PersonName("Mrs", "Shelly", "Smith")));
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")
.setPostcode("DN34 4GB")
.setAddressUse(AddressType.WorkPlace.code));
template.setOrganisationType(CDAOrganizationProviderType._GPPractice);
template.addOrganisationPartOf(new ChildPatientOrganisationPartOf()
.addOrganisationId(new OrgID(OrgIDType.ODSOrgID.code, "V396G")));
return template;
}