Example #1
0
 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>();
 }
Example #2
0
 public InterestPointBuilder SetCategory(TourCategory category)
 {
     _category = category;
     return(this);
 }