Exemple #1
0
 public Weather(CityInfomaition cityInfo, TodayWeather today, DayWeather tomorrow, DayWeather third, DayWeather fourth)
 {
     _cityInfo = cityInfo;
     _today    = today;
     _fourth   = fourth;
     _third    = third;
     _tomorrow = tomorrow;
 }
 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;
 }
Exemple #4
0
 /// <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;
 }