public DailyWeatherViewModel(DailyWeather dailyWeather, WeatherForecastOptions options)
 {
     DailyWeather = dailyWeather;
     _options     = options;
     Init();
 }
Пример #2
0
 public CurrentWeatherViewModel(CurrentWeather currentWeather, WeatherForecastOptions options)
 {
     _currentWeather = currentWeather;
     _options        = options;
     Init();
 }