Exemplo n.º 1
0
 public City(string cityName, string responsiblePerson)
 {
     CityName          = cityName;
     ResponsiblePerson = responsiblePerson;
     Monuments         = new PlaceOfInterestContainer(Program.MaxPlaces);
     Museums           = new PlaceOfInterestContainer(Program.MaxPlaces);
 }
Exemplo n.º 2
0
 public City(string cityName)
 {
     CityName  = cityName;
     Monuments = new PlaceOfInterestContainer(Program.MaxPlaces);
     Museums   = new PlaceOfInterestContainer(Program.MaxPlaces);
 }