示例#1
0
 public MatchController(
     MatchService matchService,
     RatingService ratingService,
     Schotten2Service schotten2Service,
     IMapper mapper
     )
 {
     _matchService     = matchService;
     _ratingService    = ratingService;
     _schotten2Service = schotten2Service;
     _mapper           = mapper;
 }
示例#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;
 }