public Weather(CityInfomaition cityInfo, TodayWeather today, DayWeather tomorrow, DayWeather third, DayWeather fourth) { _cityInfo = cityInfo; _today = today; _fourth = fourth; _third = third; _tomorrow = tomorrow; }
/// <summary> /// Weather /// </summary> /// <param name="cityInfo"></param> /// <param name="today"></param> /// <param name="dayWeathers"></param> public Weather(CityInfomaition cityInfo, TodayWeather today, DayWeather[] dayWeathers) { _cityInfo = cityInfo; _today = today; _dayWeathers = dayWeathers; }