Пример #1
0
        private void ConfigureWeatherService()
        {
            var openWeatherService = OpenWeatherService.CreateService();

            Kernel.Bind <IWeatherService>()
            .ToConstant(openWeatherService)
            .InSingletonScope();
        }