public ForecastDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
Ejemplo n.º 2
0
 public StatisticsDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     this.weatherData.RegisterObserver(this);
 }