コード例 #1
0
ファイル: StartupService.cs プロジェクト: Hamsterland/Hiromi
 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;
 }