public void UpdateTour(Tour tour) { tours[tour.Id] = tour; }
public void AddTour(Tour tour) { tour.Id = tours.Count(); tours.Add(tour); }