public void Dispose() { weatherData = null; currentConditionsDisplay = null; forcastDisplay = null; statisticsDisplay = null; heatIndexDisplay = null; }
public void Init() { weatherData = new WeatherDataImp.WeatherData(); currentConditionsDisplay = new WeatherDataImp.CurrentConditionsDisplay(weatherData); forcastDisplay = new WeatherDataImp.ForcastDisplay(weatherData); statisticsDisplay = new WeatherDataImp.StatisticsDisplay(weatherData); heatIndexDisplay = new WeatherDataImp.HeatIndexDisplay(weatherData); }