示例#1
0
 public StartupService(
     DiscordSocketClient discordSocketClient,
     IConfiguration configuration,
     ICommandStoreService commandStoreService,
     ILogger logger,
     IReminderService reminderService)
 {
     _discordSocketClient = discordSocketClient;
     _configuration       = configuration;
     _commandStoreService = commandStoreService;
     _logger          = logger;
     _reminderService = reminderService;
 }
示例#2
0
 public CommandToggleService(ICommandStoreService commandStoreService)
 {
     _commandStoreService = commandStoreService;
 }