public WeatherInfoService(
            IWeatherServiceRepository repository,
            IWeatherInfoServiceClient client,
            IWeatherInfoServiceUtils utils)
        {
            _repository = repository;
            _utils      = utils;
            _client     = client;

            Initialize();
        }
Esempio n. 2
0
 public DarkSkyService(
     IWeatherServiceRepository repository,
     IWeatherInfoServiceClient client,
     IWeatherInfoServiceUtils utils) : base(repository, client, utils)
 {
 }
 // Dependency Injection
 public IpmaWeatherServiceController(IWeatherServiceRepository <WeatherResponse> weatherServiceRepository)
 {
     _weatherServiceRepository = weatherServiceRepository;
 }
Esempio n. 4
0
 public OpenWeatherMapService(
     IWeatherServiceRepository repository,
     IWeatherInfoServiceClient client,
     IWeatherInfoServiceUtils utils) : base(repository, client, utils)
 {
 }