コード例 #1
0
 public LeaguesController(
     ILeagueService leagueService,
     ISingleLeagueMatchService singleLeagueMatchService,
     IMapper mapper,
     IDoubleLeaugeMatchService doubleLeagueMatchService)
 {
     _leagueService            = leagueService;
     _singleLeagueMatchService = singleLeagueMatchService;
     _doubleLeagueMatchService = doubleLeagueMatchService;
     _mapper = mapper;
 }
コード例 #2
0
 public DoubleLeagueMatchesController(IMapper mapper, IDoubleLeaugeMatchService doubleLeaugeMatchService)
 {
     _mapper = mapper;
     _doubleLeaugeMatchService = doubleLeaugeMatchService;
 }
コード例 #3
0
 public DoubleLeagueGoalsController(IDoubleLeagueGoalService goalService, IDoubleLeaugeMatchService doubleLeaugeMatchService, IMapper mapper)
 {
     _goalService = goalService;
     _doubleLeaugeMatchService = doubleLeaugeMatchService;
     _mapper = mapper;
 }