Example #1
0
 public MatchesManager(SclaskDbContext dbContext, IMatchService matchService)
 {
     _dbContext    = dbContext;
     _matchService = matchService;
 }
Example #2
0
 public RatingsController(SclaskDbContext appDbContext)
 {
     this._appContext = appDbContext;
 }
Example #3
0
 public GamesController(SclaskDbContext appDbContext)
 {
     this._appContext = appDbContext;
 }
Example #4
0
 public MatchServices(SclaskDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #5
0
 public MatchesController(SclaskDbContext appDbContext, IMatchesManager matchesManager, IMatchService matchService)
 {
     _appContext     = appDbContext;
     _matchesManager = matchesManager;
     _matchService   = matchService;
 }
Example #6
0
 public PlayersController(SclaskDbContext appDbContext)
 {
     this._appContext = appDbContext;
 }