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