Esempio n. 1
0
 public LobbyService(IMatchService matchService,
                     IPlayerService playerService, IMatchRequestService matchRequestService,
                     IMatcherService matcherService,
                     IInventoryService inventoryService)
 {
     _playerService       = playerService;
     _matchService        = matchService;
     _matchRequestService = matchRequestService;
     _inventoryService    = inventoryService;
 }
Esempio n. 2
0
 public void TestInitialize()
 {
     _matcherService = new StringMatcherService(new PresenceComparer());
 }
Esempio n. 3
0
 public MatcherController(IMatcherService service, IMapper mapper) : base(service, mapper)
 {
 }