Example #1
0
 public MessageReceivedHandler(DiscordSocketClient client, CommandService commands, IOptions <Configuration> config, IServiceProvider services,
                               AutoReplyService autoReply, EmoteChain emoteChain, InternalStatistics internalStatistics, EmoteStats emoteStats, UserService userService)
 {
     Client             = client;
     Commands           = commands;
     Services           = services;
     AutoReply          = autoReply;
     EmoteChain         = emoteChain;
     InternalStatistics = internalStatistics;
     EmoteStats         = emoteStats;
     Config             = config.Value;
     UserService        = userService;
 }
Example #2
0
 public MessageReceivedHandler(DiscordSocketClient client, CommandService commands, IOptions <Configuration> config, IServiceProvider services,
                               ChannelStats channelStats, AutoReplyService autoReply, EmoteChain emoteChain, CalledEventStats calledEventStats, Statistics statistics,
                               EmoteStats emoteStats)
 {
     Client           = client;
     Commands         = commands;
     Services         = services;
     ChannelStats     = channelStats;
     AutoReply        = autoReply;
     EmoteChain       = emoteChain;
     CalledEventStats = calledEventStats;
     Statistics       = statistics;
     EmoteStats       = emoteStats;
     Config           = config.Value;
 }
Example #3
0
 public AutoReplyModule(AutoReplyService service)
 {
     Service = service;
 }
Example #4
0
 public AutoReplyModule(AutoReplyService service, PaginationService paginationService) : base(paginationService: paginationService)
 {
     Service = service;
 }