Exemple #1
0
 public GetWeatherInformationByCity(IOpenWeatherMap openWeatherMapService)
 {
     _openWeatherMapService = openWeatherMapService;
 }
 public WeatherController(IOpenWeatherMap openWeatherMap)
 {
     this._openWeatherMap = openWeatherMap;
 }
 public PrudentialUKWeatherAPITest()
 {
     _service    = new OpenWeatherMapFake();
     _controller = new CityWeatherController(_service);
 }
Exemple #4
0
 public CityWeatherController(IOpenWeatherMap openWeatherMap)
 {
     _openWeatherMap = openWeatherMap;
 }