Esempio n. 1
0
 public GameOfGoHubService(IHubContextService context, ICurrentRequestSession requestSession, IActiveGoGame activeGame, IGoService goService, IDataService dataService)
 {
     HubContext = context;
     this.requestSession = requestSession;
     this.activeGame = activeGame;
     this.goService = goService;
     this.dataService = dataService;
 }
Esempio n. 2
0
    public RealtimeHub(IRealtimeVisitorRepository realTimeUserRepository,
        IGeoCoordinateRepository geoCoordinateRepository,
        IHubContextService contextService,
        IGeocoderService geocoderService)
    {
      this.realTimeUserRepository = realTimeUserRepository;
      this.geoCoordinateRepository = geoCoordinateRepository;
      this.geocoderService = geocoderService;
      this.hubContextService = contextService;

    }
Esempio n. 3
0
 public RequestCookieCollectionProvider(IHubContextService hubContext)
 {
     hubContextService = hubContext;
 }