Example #1
0
 private static void Set(this LocationReference locationReference, PostalCode postalCode)
 {
     locationReference.Set(
         null,
         postalCode.Clone(),
         postalCode.GetCountrySubdivision().Clone(),
         postalCode.Locality.Clone());
 }
Example #2
0
 public static void Set(this LocationReference locationReference, string unstructuredLocation, CountrySubdivision countrySubdivision, PostalCode postalCode)
 {
     locationReference.Set(
         unstructuredLocation,
         postalCode.Clone(),
         countrySubdivision.Clone(),
         postalCode.Locality.Clone());
 }