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