public CurrentConditionsDisplay(WeatherStation station)
 {
     _station = station;
     station.RegisterObserver(this);
 }
예제 #2
0
 public StatisticsDisplay(WeatherStation station)
 {
     _station = station;
     station.RegisterObserver(this);
 }