Beispiel #1
0
 public FixturesController(
     IFixturesService fixturesService,
     ILeaguesService leaguesService,
     IH2HService h2HService)
 {
     this.fixturesService = fixturesService;
     this.leaguesService  = leaguesService;
     this.h2HService      = h2HService;
 }
Beispiel #2
0
 public H2HController(IH2HService h2HService, IMapper mapper)
 {
     this._h2HService = h2HService;
     this._mapper     = mapper;
 }