public StandingsAPIController(IMatchesRepo repository)
 {
     _repository = repository;
 }
Exemple #2
0
 public MatchController(IMatchesRepo matchesRepo)
 {
     _matchesRepo = matchesRepo;
 }