Exemplo n.º 1
0
 public ApiWeatherApiController(IApiWeatherRepository _apiWeatherRepository)
 {
     apiWeatherRepository = _apiWeatherRepository;
 }
Exemplo n.º 2
0
 public LocalWeatherApiController(ILocalWeatherRepository _localWeatherRepository, IApiWeatherRepository _apiWeatherRepository, ILocalCityRepository _localCityRepository)
 {
     localWeatherRepository = _localWeatherRepository;
     apiWeatherRepository   = _apiWeatherRepository;
     localCityRepository    = _localCityRepository;
 }