Beispiel #1
0
 public ArtistCommands(Logger.Logger logger,
                       ILastfmApi lastfmApi,
                       IPrefixService prefixService,
                       ArtistsService artistsService,
                       WhoKnowsArtistService whoKnowsArtistService,
                       GuildService guildService,
                       UserService userService,
                       LastFMService lastFmService,
                       PlayService playService,
                       IUpdateService updateService,
                       SpotifyService spotifyService,
                       IIndexService indexService)
 {
     this._logger               = logger;
     this._lastfmApi            = lastfmApi;
     this._lastFmService        = lastFmService;
     this._playService          = playService;
     this._updateService        = updateService;
     this._spotifyService       = spotifyService;
     this._indexService         = indexService;
     this._prefixService        = prefixService;
     this._artistsService       = artistsService;
     this._whoKnowArtistService = whoKnowsArtistService;
     this._guildService         = guildService;
     this._userService          = userService;
     this._embed = new EmbedBuilder()
                   .WithColor(DiscordConstants.LastFMColorRed);
     this._embedAuthor = new EmbedAuthorBuilder();
     this._embedFooter = new EmbedFooterBuilder();
 }
Beispiel #2
0
 public ArtistCommands(Logger.Logger logger,
                       ILastfmApi lastfmApi,
                       IPrefixService prefixService,
                       ArtistsService artistsService,
                       WhoKnowsArtistService whoKnowsArtistService,
                       GuildService guildService,
                       UserService userService,
                       LastFMService lastFmService)
 {
     this._logger               = logger;
     this._lastfmApi            = lastfmApi;
     this._lastFmService        = lastFmService;
     this._prefixService        = prefixService;
     this._artistsService       = artistsService;
     this._whoKnowArtistService = whoKnowsArtistService;
     this._guildService         = guildService;
     this._userService          = userService;
     this._embed = new EmbedBuilder()
                   .WithColor(Constants.LastFMColorRed);
     this._embedAuthor = new EmbedAuthorBuilder();
     this._embedFooter = new EmbedFooterBuilder();
 }