コード例 #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);
 }