public MatchmakerController(
     MatchmakerLogService matchmakerLogService,
     MatchmakerService matchmakerService
     )
 {
     _matchmakerLogService = matchmakerLogService;
     _matchmakerService    = matchmakerService;
 }
Example #2
0
 public MatchmakerService(
     MatchmakerPoolSingleton matchmakerPoolSingleton,
     MatchmakerLogService matchmakerLogService,
     MatchService matchService,
     PlayerService playerService,
     Schotten2Service schotten2Service,
     NotificationService notificationService
     )
 {
     _matchmakerPoolSingleton = matchmakerPoolSingleton;
     _matchmakerLogService    = matchmakerLogService;
     _matchService            = matchService;
     _playerService           = playerService;
     _schotten2Service        = schotten2Service;
     _notificationService     = notificationService;
 }