public StandingsAPIController(IMatchesRepo repository)
 {
     _repository = repository;
 }
Пример #2
0
 public MatchController(IMatchesRepo matchesRepo)
 {
     _matchesRepo = matchesRepo;
 }