Exemplo n.º 1
0
 public HomeController(GlobalWeatherService.GlobalWeatherSoap client, IWeatherMapService weatherMapService, ICountryService countryService)
 {
     _client            = client;
     _weatherMapService = weatherMapService;
     _countryService    = countryService;
 }
Exemplo n.º 2
0
 public PlaylistService(IWeatherMapService weatherMapService, ISpotifyService spotifyService)
 {
     _weatherMapService = weatherMapService;
     _spotifyService    = spotifyService;
 }
 public WeatherController(IWeatherMapService weatherMapService)
 {
     _weatherMapService = weatherMapService;
 }