Ejemplo n.º 1
0
 public CurrencyService(IBotConfigProvider config, DbService db, DiscordSocketClient c)
 {
     _config = config;
     _db     = db;
     _botId  = c.CurrentUser.Id;
 }
Ejemplo n.º 2
0
 public BotConfigMigrator(DbService dbService, BotConfigService bss)
 {
     _db  = dbService;
     _bss = bss;
 }
Ejemplo n.º 3
0
 public GamblingConfigMigrator(DbService dbService, GamblingConfigService gss)
 {
     _db  = dbService;
     _gss = gss;
 }
 public CurrencyService(IBotConfigProvider config, DbService db)
 {
     _config = config;
     _db     = db;
 }