Exemple #1
0
 public UserPunishCommands(IDataCache data, MuteService mute, GuildTimezoneService tz, DbService db)
 {
     _images = data.LocalImages;
     _mute   = mute;
     _tz     = tz;
     _db     = db;
 }
 public DailyMoneyCommands(IBotConfigProvider bc, IUnitOfWork uow, CurrencyService currency, GuildTimezoneService gts)
 {
     _bc       = bc;
     this.uow  = uow;
     _currency = currency;
     _gts      = gts;
 }
Exemple #3
0
 public Searches(IBotCredentials creds, IGoogleApiService google, IHttpClientFactory factory, IMemoryCache cache,
                 GuildTimezoneService tzSvc)
 {
     _creds       = creds;
     _google      = google;
     _httpFactory = factory;
     _cache       = cache;
     _tzSvc       = tzSvc;
 }
 public RemindCommands(DbService db, GuildTimezoneService tz)
 {
     _db = db;
     _tz = tz;
 }
Exemple #5
0
 public RemindCommands(IUnitOfWork uow, GuildTimezoneService tz)
 {
     this.uow = uow;
     _tz      = tz;
 }