public CurrentConditionsDisplay(WeatherStation station)
 {
     _station = station;
     station.RegisterObserver(this);
 }
Esempio n. 2
0
 public StatisticsDisplay(WeatherStation station)
 {
     _station = station;
     station.RegisterObserver(this);
 }