public void RemoveFan(IWeatherFan fan)
 {
     _weatherFans.Remove(fan);
 }
 public void AddFan(IWeatherFan fan)
 {
     _weatherFans.Add(fan);
 }