예제 #1
0
파일: City.cs 프로젝트: EdvinasBa/P4_8_2016
 public City(string cityName, string responsiblePerson)
 {
     CityName          = cityName;
     ResponsiblePerson = responsiblePerson;
     Monuments         = new PlaceOfInterestContainer(Program.MaxPlaces);
     Museums           = new PlaceOfInterestContainer(Program.MaxPlaces);
 }
예제 #2
0
파일: City.cs 프로젝트: EdvinasBa/P4_8_2016
 public City(string cityName)
 {
     CityName  = cityName;
     Monuments = new PlaceOfInterestContainer(Program.MaxPlaces);
     Museums   = new PlaceOfInterestContainer(Program.MaxPlaces);
 }