示例#1
0
 public CurrentConditionsDisplay(iSubject weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
示例#2
0
 public ThirdPartyDisplay(iSubject weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
示例#3
0
 public StatisticsDisplay(iSubject weatherData)
 {
     weatherData.RegisterObserver(this);
     this.weatherData = weatherData;
     RegisterLongTermWeatherData(this.weatherData);
 }
 public ForcastDisplay(iSubject weatherData)
 {
     weatherData.RegisterObserver(this);
     this.weatherData = weatherData;
 }