Example #1
0
 public HelpModule(ICommandHelpService commandHelpService, IImageService imageService)
 {
     _commandHelpService = commandHelpService;
     _imageService       = imageService;
 }
Example #2
0
 public HelpModule(ICommandHelpService commandHelpService, MajorContext config)
 {
     _commandHelpService = commandHelpService;
     _config             = config;
 }
Example #3
0
 public HelpModule(ICommandHelpService commandHelpService, IOptions <ModixConfig> config)
 {
     _commandHelpService = commandHelpService;
     _config             = config.Value;
 }
Example #4
0
 public HelpModule(ICommandHelpService commandHelpService)
 {
     _commandHelpService = commandHelpService;
 }
 public CommandsController(ICommandHelpService commandHelpService)
 {
     _commandHelpService = commandHelpService;
 }