Exemple #1
0
 public AudioFeaturesManager(Api spotifyWebApi, IndexedDbCache <TrackAudioFeatures> dataCache, IndexedDbCache <string> administrativeCache)
 {
     api          = spotifyWebApi;
     storageCache = dataCache;
     trackIdCache = administrativeCache;
 }
Exemple #2
0
 public SavedTrackManager(Api spotifyWebApi, IndexedDbCache <SavedTrack> indexedDbCache)
 {
     api          = spotifyWebApi;
     storageCache = indexedDbCache;
 }