Пример #1
0
 public NowPlayingCommand(
     ILastfmService lastfmService,
     ISpotifyService spotifyService,
     ILastfmUsernameService lastfmUsernameService)
 {
     this.lastfmService         = lastfmService;
     this.spotifyService        = spotifyService;
     this.lastfmUsernameService = lastfmUsernameService;
 }
Пример #2
0
 public TopTracksCommand(
     ILastfmService lastfmService,
     ILastfmUsernameService lastfmUsernameService,
     ISpotifyService spotifyService)
 {
     this.lastfmService         = lastfmService;
     this.lastfmUsernameService = lastfmUsernameService;
     this.spotifyService        = spotifyService;
 }
Пример #3
0
 public LastfmRepository(ILastfmService service, ILastfmCache cache)
 {
     this.service = service;
     this.cache   = cache;
 }
Пример #4
0
 public LastFmAlbumInfo(ILastfmService service)
 {
     this.service = service;
 }