public CurrentConditionsDisplay(IWeatherPublisher weatherData)
        {
            _weatherData = weatherData;

            weatherData.AddSubscriber(this);
        }
Exemple #2
0
 public WeatherForecastController(IWeatherPublisher weatherPublisher)
 => this.weatherPublisher = weatherPublisher;