public CityDetails(string country, string city, string timeZone, CityPopulation cityPopulation) { _country = country; _city = city; _timeZone = timeZone; _cityPopulation = cityPopulation; }
public CityDetails(string country, string cityName, string timeZone, CityPopulation cityPopulation) { Country = country; Name = cityName; TimeZone = timeZone; CityPopulation = cityPopulation; }
public CityDetails(string country, string cityName, string timeZone, CityPopulation cityPopulation) { }