public Task Handle(ShopCommentAddedEvent message) { if (message == null) { throw new ArgumentNullException(nameof(message)); } var notifier = _connectionManager.GetHubContext <Notifier>(); notifier.Clients.All.shopCommentAdded(_responseBuilder.GetShopCommentAddedEvent(message)); return(Task.FromResult(0)); }