Beispiel #1
0
 public Inquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
 }
Beispiel #2
0
 public MainInquiry(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random rand
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web, rand)
 {
 }
Beispiel #3
0
 public Dev(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     IYuGiOhRepository yuGiOhRepository
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _yugiohRepo = yuGiOhRepository;
 }
Beispiel #4
0
 public Miscellaneous(
     ILoggerFactory loggerFactory,
     Cache cache,
     IYuGiOhDbService yuGiOhDbService,
     IGuildConfigDbService guildConfigDbService,
     Web web,
     Random random
     ) : base(loggerFactory, cache, yuGiOhDbService, guildConfigDbService, web)
 {
     _random = random;
 }
Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #8
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;
 }
Beispiel #9
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;
 }
Beispiel #10
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;
 }
Beispiel #11
0
 public ArchetypeAutocomplete(IYuGiOhDbService yugiohDbService)
 {
     _yugiohDbService = yugiohDbService;
 }
Beispiel #12
0
 public CardAutocomplete(IYuGiOhDbService yugiohDbService)
 {
     _yuGiOhDbService = yugiohDbService;
 }
Beispiel #13
0
 public SupportAutocomplete(IYuGiOhDbService yuGiOhDbService)
 {
     _yuGiOhDbService = yuGiOhDbService;
 }
Beispiel #14
0
 public BoosterPackAutocomplete(IYuGiOhDbService yuGiOhDbService)
 {
     _yuGiOhDbService = yuGiOhDbService;
 }