public CurrentConditionsDisplay(WeatherData weatherData)
 {
     this.weatherData = weatherData;
     weatherData.RegisterObserver(this);
 }
 public StatsDisplay(WeatherData weatherData)
 {
     this.weatherdata = weatherData;
     weatherData.RegisterObserver(this);
 }