// GET api/<controller>/5
 public Bug Get(int id)
 {
     _hub.Clients.All.sayHello("from signalR");
     return(_bugsRepository.Get(id));
 }