예제 #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 ForgetMeCommand(ILastfmUsernameService lastfmUsernameService)
 {
     this.lastfmUsernameService = lastfmUsernameService;
 }
예제 #4
0
 public SetLastfmUsernameCommand(ILastfmUsernameService lastfmUsenamerService)
 {
     this.lastfmUsernameService = lastfmUsenamerService;
 }