Exemple #1
0
 public SpotifyService(
     WebApiManager webApiManager,
     AuthorizationService spotifyServiceAuth,
     ContextsService spotifyServiceContext,
     ExploreService spotifyServiceExplore,
     LibraryService spotifyServiceLibrary,
     PlaybackService spotifyServicePlayback,
     UserService spotifyServiceUser)
 {
     dispatcher = webApiManager;
     Auth       = spotifyServiceAuth;
     Context    = spotifyServiceContext;
     Explore    = spotifyServiceExplore;
     Library    = spotifyServiceLibrary;
     Playback   = spotifyServicePlayback;
     User       = spotifyServiceUser;
 }
Exemple #2
0
        private ExploreService CreateExploreService()
        {
            var service = new ExploreService();

            return(service);
        }