示例#1
0
 public MatchService(BetsKingDbContext dbContext, IMatchBetService matchBetService)
 {
     _dbContext       = dbContext;
     _matchBetService = matchBetService;
 }
示例#2
0
 public RoundController(IRoundService roundService, IMatchBetService matchBetService)
 {
     _roundService    = roundService;
     _matchBetService = matchBetService;
 }