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