Exemplo n.º 1
0
 public MatchResourcesService(IMapGenerationService mapGenerationService,
                              IPlayerResourcesService playerResourcesService,
                              IRuleSetService ruleSetService)
 {
     this._mapGenerationService   = mapGenerationService;
     this._playerResourcesService = playerResourcesService;
     this._ruleSetService         = ruleSetService;
 }
Exemplo n.º 2
0
 public MatchHub(IMatchResourcesService matchResourcesService,
                 IPlayerResourcesService playerResourcesService,
                 IAlgorithmService algorithmService,
                 IMatchesManagerService matchesManagerService,
                 IMapper mapper,
                 IHostingEnvironment env)
 {
     this._matchResourcesService  = matchResourcesService;
     this._playerResourcesService = playerResourcesService;
     this._algorithmService       = algorithmService;
     this._matchesManagerService  = matchesManagerService;
     this._mapper = mapper;
     this._env    = env;
 }