public CurrentConditionsDisplay(WeatherData weatherData)
 {
     _weatherData = weatherData;
     _weatherData.RegisterObserver(this);
 }
示例#2
0
 public WeatherStatisticsDisplay(WeatherData weatherData)
 {
     _weatherData = weatherData;
     _weatherData.RegisterObserver(this);
 }