private void ConfigureWeatherService() { var openWeatherService = OpenWeatherService.CreateService(); Kernel.Bind <IWeatherService>() .ToConstant(openWeatherService) .InSingletonScope(); }