예제 #1
0
 public SpotifyService(
     IPlaylistsApi playlists,
     IPlayerApi player,
     IAlbumsApi albums,
     IArtistsApi artists,
     ILogger <SpotifyService> logger
     )
 {
     _playlists = playlists;
     _albums    = albums;
     _artists   = artists;
     _player    = player;
     _logger    = logger;
 }
예제 #2
0
 public GetPhotosHandler(IPhotosApi photosApi, IAlbumsApi albumsApi)
 {
     this.photosApi = photosApi;
     this.albumsApi = albumsApi;
 }