public StatisticsDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
 public HeatIndexDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
 public ForecastDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
Ejemplo n.º 4
0
 public ForecastDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
Ejemplo n.º 5
0
 public StatisticsDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
Ejemplo n.º 6
0
 public HeatIndexDisplay(WeatherData weatherData)
 {
     this._weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }