public void Dispose()
 {
     _spotifyWebService = null;
     _lastFmWebService  = null;
 }
 public void Initialize()
 {
     _spotifyWebService = new SpotifyWebService(_options);
     _lastFmWebService  = new LastFmWebService(_options);
 }