Exemple #1
0
 public PlaceOfInterest(string name, PlaceOfInterestCategory placeOfInterestCategory, string address, Coordinate location, int distanceFromUserLocationInMeters)
 {
     this.Name     = name;
     this.Address  = address;
     this.Location = location;
     this.DistanceFromUserLocationInMeters = distanceFromUserLocationInMeters;
     this.PlaceOfInterestCategory          = placeOfInterestCategory;
 }
 public PlaceOfInterest(string name, PlaceOfInterestCategory placeOfInterestCategory, string address, Coordinate location, int distanceFromUserLocationInMeters)
 {
     this.Name = name;
     this.Address = address;
     this.Location = location;
     this.DistanceFromUserLocationInMeters = distanceFromUserLocationInMeters;
     this.PlaceOfInterestCategory = placeOfInterestCategory;
 }