Esempio n. 1
0
 public GameHub(MatchCache matchCache, ConnectionCache connectionCache, HttpClient httpClient, Dictionary <string, UnfinishedMatchResult> timeReported)
 {
     _httpClient      = httpClient;
     _timeReported    = timeReported;
     _matchCache      = matchCache;
     _connectionCache = connectionCache;
 }
Esempio n. 2
0
 public GameController(IHubContext <GameHub> gameHub, MatchCache matchCache, ConnectionCache connectionCache)
 {
     _gameHub         = gameHub;
     _matchCache      = matchCache;
     _connectionCache = connectionCache;
 }