예제 #1
0
 public MatchController(RequestScope scopeContext, IMatchService service, IMatchRequestService matchRequestService
                        , ITeamPlayersService teamPlayerService)
     : base(scopeContext, service)
 {
     _service             = service;
     _teamPlayerService   = teamPlayerService;
     _matchRequestService = matchRequestService;
 }
예제 #2
0
 public LobbyService(IMatchService matchService,
                     IPlayerService playerService, IMatchRequestService matchRequestService,
                     IMatcherService matcherService,
                     IInventoryService inventoryService)
 {
     _playerService       = playerService;
     _matchService        = matchService;
     _matchRequestService = matchRequestService;
     _inventoryService    = inventoryService;
 }
예제 #3
0
        public TeamService(RequestScope scopeContext, ITeamRepository repository, ITeamPlayersService teamPlayerService,
                           IMatchRequestService matchRequestService,
                           IHttpContextAccessor httpContextAccessor)

            : base(scopeContext, repository)
        {
            _teamPlayerService   = teamPlayerService;
            _httpContextAccessor = httpContextAccessor;

            _matchRequestService = matchRequestService;
        }
예제 #4
0
 public MatchRequestController(RequestScope scopeContext, IMatchRequestService service
                               , IHubContext <MatchHub> matchHub)
     : base(scopeContext, service)
 {
     _matchHub = matchHub;
 }