예제 #1
0
파일: World.cs 프로젝트: formist/LinkMe
 private static void Set(this LocationReference locationReference, PostalCode postalCode)
 {
     locationReference.Set(
         null,
         postalCode.Clone(),
         postalCode.GetCountrySubdivision().Clone(),
         postalCode.Locality.Clone());
 }
예제 #2
0
파일: World.cs 프로젝트: formist/LinkMe
 public static void Set(this LocationReference locationReference, string unstructuredLocation, CountrySubdivision countrySubdivision, PostalCode postalCode)
 {
     locationReference.Set(
         unstructuredLocation,
         postalCode.Clone(),
         countrySubdivision.Clone(),
         postalCode.Locality.Clone());
 }