Exemple #1
0
 public LeagueService()
 {
     _dbContext = new MatchesDbContext();
     _converter = new LeagueConverter();
 }
 public MatchService()
 {
     _dbContext = new MatchesDbContext();
     _converter = new MatchConverter();
 }
Exemple #3
0
 public TeamService()
 {
     _dbContext = new MatchesDbContext();
     _converter = new  TeamConverter();
 }