protected WeatherStationUIController(IAmTheWeatherStationUI weatherStationUI, WeatherApi weatherApi)
 {
     _weatherStationUI = weatherStationUI;
     _weatherApi       = weatherApi;
 }
 public static Form InitUIWith(IAmTheWeatherStationUI weatherStationUI, WeatherApi weatherApi)
 {
     return(new WeatherStationUIController(weatherStationUI, weatherApi).SetupUI());
 }