internal InterestPoint(int id, string name, double latitude, double longitude, TourCategory category, ThematicScore score, TimeSpan?timeVisit) { Id = id; Name = name; Latitude = latitude; Longitude = longitude; Category = category; Score = score; TimeVisit = timeVisit; OpeningTimes = new Collection <IntervalTime>(); }
public InterestPointBuilder SetThematicScore(ThematicScore score) { _score = score; return(this); }