Esempio n. 1
0
 public Inquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
 }
Esempio n. 2
0
 public MainInquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio 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;
 }
Esempio n. 12
0
 public GuildHandler(IGuildConfigDbService guildConfigService)
 {
     _guildConfigService = guildConfigService;
 }