public CommentsController(IRepository repository, IWebSocketHub webSocketHub)
 {
     _repository   = repository;
     _webSocketHub = webSocketHub;
 }
 public CommentsWebSocketHandler(IWebSocketHub hub)
 {
     _hub = hub;
 }