public HubService(
     IHubContext <GrapeHub> hubContext,
     IGrapeService grapeService)
 {
     _hubContext   = hubContext;
     _grapeService = grapeService;
 }
 public HateoasGrapesController(
     IGrapeService grapeService,
     IHubService hubService)
 {
     _grapeService = grapeService;
     _hubService   = hubService;
 }