Ejemplo n.º 1
0
 public QuestionsController(IHubContext <VoteHub> hubContext, IParticipantEventsService service)
 {
     this.hubContext = hubContext;
     this.service    = service;
 }
Ejemplo n.º 2
0
 public EventsController(IParticipantEventsService service, IHubContext <VoteHub> hubContext)
     : base()
 {
     this.service    = service;
     this.hubContext = hubContext;
 }