public WeatherMainModel(CityObject city) : base(city) { ForecastWeather = new WeatherForecastModel(city); }
public WeatherForecastViewModel(WeatherForecastModel model) : base() { _model = model; _forecast = model.Forecast; }