public City(String name, Streets street, Buildings building, Schools school, Parks park) { this.name = name; this.street = street; this.building = building; this.school = school; this.park = park; }
static void Main(string[] args) { Schools school = new Schools("Troy High School", 25, 500); Buildings building = new Buildings("Firm", 12); Streets street = new Streets("Lancaster Street", building); Parks park = new Parks("Central Park", 350); City city = new City("New York", street, building, school, park); Console.WriteLine(city.ToString()); }
public Streets(string name, Buildings building) { this.name = name; this.building = building; }