public CustomChatCommandsController(
     IChatCommandService chatCommandService,
     ILogger <CustomChatCommandsController> logger)
 {
     _chatCommandService = chatCommandService;
     _logger             = logger;
 }
 public OnModuleNWNXChat(
     IActivityLoggingService activityLogging,
     IChatCommandService chatCommand,
     IStructureService structure)
 {
     _activityLogging = activityLogging;
     _chatCommand     = chatCommand;
     _structure       = structure;
 }
 public ChatroomHub(IRepository<ChatMessage> messagesRepository,
     IUserService userService, IStockMessageSender stockSender,
     IChatCommandService commandService)
 {
     _messagesRepository = messagesRepository;
     _userService = userService;
     _stockSender = stockSender;
     _commandService = commandService;
 }
示例#4
0
 public OnModuleNWNXChat(
     IActivityLoggingService activityLogging,
     IChatCommandService chatCommand,
     IBaseService @base,
     IChatTextService chatText,
     ICraftService craft)
 {
     _activityLogging = activityLogging;
     _chatCommand     = chatCommand;
     _base            = @base;
     _chatText        = chatText;
     _craft           = craft;
 }
示例#5
0
 public OnModuleUseFeat(
     INWScript script,
     IAbilityService ability,
     IPlayerService player,
     IBaseService @base,
     ICraftService craft,
     IChatCommandService chat)
 {
     _        = script;
     _ability = ability;
     _player  = player;
     _base    = @base;
     _craft   = craft;
     _chat    = chat;
 }
示例#6
0
 public ChatCommandTest()
 {
     commandService = new ChatCommandService();
 }