示例#1
0
 public AddressPostalType ToAddressPostalType(string postDistrict)
 {
     return(new CprBroker.Schemas.Part.AddressPostalType()
     {
         CountryIdentificationCode = ToCountryIdentificationCodeType(),
         DistrictName = postDistrict,
         DistrictSubdivisionIdentifier = Town,
         FloorIdentifier = Floor,
         MailDeliverySublocationIdentifier = null,
         PostCodeIdentifier = PostCode.ToDecimalString(),
         PostOfficeBoxIdentifier = null,
         StreetBuildingIdentifier = HouseNumber,
         StreetName = StreetAddressingName,
         StreetNameForAddressingName = StreetAddressingName,
         SuiteIdentifier = DoorNumber,
     });
 }