Esempio n. 1
0
 public MatchService(BetsKingDbContext dbContext, IMatchBetService matchBetService)
 {
     _dbContext       = dbContext;
     _matchBetService = matchBetService;
 }
Esempio n. 2
0
 public RoundController(IRoundService roundService, IMatchBetService matchBetService)
 {
     _roundService    = roundService;
     _matchBetService = matchBetService;
 }