Exemplo n.º 1
0
 public Inquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
 }
Exemplo n.º 2
0
 public MainInquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
 }
Exemplo n.º 3
0
 public Dev(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     IYuGiOhRepository yuGiOhRepository
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _yugiohRepo = yuGiOhRepository;
 }
Exemplo n.º 4
0
 public Miscellaneous(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random random
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _random = random;
 }
Exemplo n.º 5
0
 public Games(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
     _loggerFactory = loggerFactory;
 }
Exemplo n.º 6
0
 protected MainInteractionBase(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web
     )
 {
     Logger               = loggerFactory.CreateLogger(GetType().Name);
     Cache                = cache;
     YuGiOhDbService      = yuGiOhDbService;
     GuildConfigDbService = guildConfigDbService;
     Web = web;
 }
Exemplo n.º 7
0
 public Dev(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand,
     InteractionService interactionService,
     IYuGiOhRepository yugiohRepo
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
     _interactionService = interactionService;
     _yugiohRepo         = yugiohRepo;
 }
Exemplo n.º 8
0
 public CommandHandler(
     ILoggerFactory loggerFactory,
     DiscordShardedClient client,
     CommandService commandService,
     IGuildConfigDbService guildConfigDbService,
     IServiceProvider serviceProvider
     )
 {
     _logger               = loggerFactory.CreateLogger("Command");
     _client               = client;
     _commandService       = commandService;
     _guildConfigDbService = guildConfigDbService;
     _serviceProvider      = serviceProvider;
 }
Exemplo n.º 9
0
 public Help(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand,
     CommandService commandService,
     Config config
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
     _commandService = commandService;
     _config         = config;
 }
Exemplo n.º 10
0
 public Help(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     CommandHelpService cmdHelpService,
     Config config,
     Random random
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _cmdHelpService = cmdHelpService;
     _config         = config;
     _random         = random;
 }
Exemplo n.º 11
0
 public Utility(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Stats stats,
     Config config,
     IPerformanceMetrics perfMetrics
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _stats       = stats;
     _config      = config;
     _perfMetrics = perfMetrics;
 }
Exemplo n.º 12
0
 public GuildHandler(IGuildConfigDbService guildConfigService)
 {
     _guildConfigService = guildConfigService;
 }