示例#1
0
 public Sync(
     ITournamentService tournamentService,
     IPlayerService playerService,
     IGoalscorerService goalscorerService
     )
 {
     this._tournamentService = tournamentService;
     this._playerService     = playerService;
     this._goalscorerService = goalscorerService;
 }
 public GoalscorerController(IGoalscorerService goalscorerService, IMapper mapper)
 {
     this._goalscorerService = goalscorerService;
     this._mapper            = mapper;
 }