public SearchService(SpotifyHttpClient spotifyHttpClient, ArtistService artistService, AlbumService albumService, PlaylistService playlistService)
 {
     _artistService     = artistService;
     _albumService      = albumService;
     _playlistService   = playlistService;
     _spotifyHttpClient = spotifyHttpClient;
 }
 public PlayerService(SpotifyHttpClient spotifyHttpClient)
 {
     _spotifyHttpClient = spotifyHttpClient;
 }
 public ArtistService(SpotifyHttpClient spotifyHttpClient)
 {
     _spotifyHttpClient = spotifyHttpClient;
 }
Exemple #4
0
 public AlbumService(SpotifyHttpClient spotifyHttpClient)
 {
     _spotifyHttpClient = spotifyHttpClient;
 }