コード例 #1
0
ファイル: HomeController.cs プロジェクト: Awiprogs/WeatherApp
 public HomeController(IWeatherHttpClientService openWeatherHttpService)
 {
     _openWeatherHttpService = openWeatherHttpService;
     _serviceUrl             = ConfigurationManager.AppSettings["ServiceUrl"];;
 }
コード例 #2
0
 public LocalWeatherInAGivenCitySteps()
 {
     _weatherService = new WeatherHttpClientService();
     _appUrl         = ConfigurationManager.AppSettings["AppUrl"];
     _webApiUrl      = ConfigurationManager.AppSettings["WebApiUrl"];
 }