예제 #1
0
 // Public constructor
 public StatisticsDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.Attach(this);
 }
예제 #2
0
 // Public constructor
 public HeatIndexDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.Attach(this);
 }
예제 #3
0
 // Public constructor
 public ForecastDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.Attach(this);
 }
예제 #4
0
 // Public constructor
 public CurrentConditionDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.Attach(this);
 }