Пример #1
0
 public Location(decimal latitude, decimal longitude, LatLonType type)
 {
     Lat        = latitude;
     Lon        = longitude;
     LatLonType = type;
 }
Пример #2
0
 public Location(double latitude, double longitude, LatLonType type)
 {
     Lat        = (decimal)latitude;
     Lon        = (decimal)longitude;
     LatLonType = type;
 }