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