示例#1
0
 public ApiWeatherApiController(IApiWeatherRepository _apiWeatherRepository)
 {
     apiWeatherRepository = _apiWeatherRepository;
 }
示例#2
0
 public LocalWeatherApiController(ILocalWeatherRepository _localWeatherRepository, IApiWeatherRepository _apiWeatherRepository, ILocalCityRepository _localCityRepository)
 {
     localWeatherRepository = _localWeatherRepository;
     apiWeatherRepository   = _apiWeatherRepository;
     localCityRepository    = _localCityRepository;
 }