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