Exemplo n.º 1
0
 public LeaguesController(
     ILeagueService leagueService,
     ISingleLeagueMatchService singleLeagueMatchService,
     IMapper mapper,
     IDoubleLeaugeMatchService doubleLeagueMatchService)
 {
     _leagueService            = leagueService;
     _singleLeagueMatchService = singleLeagueMatchService;
     _doubleLeagueMatchService = doubleLeagueMatchService;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public SingleLeagueMatchesController(ISingleLeagueMatchService singleLeagueMatchService, IMapper mapper)
 {
     _mapper = mapper;
     _singleLeagueMatchService = singleLeagueMatchService;
 }