public void InitializeDbContext()
 {
     this.dbContext = MockDbContext.GetContext();
 }
Example #2
0
 public ArticlesService(LzLeagueContext db)
 {
     this.db = db;
 }
Example #3
0
 public TeamsService(LzLeagueContext db)
 {
     this.db = db;
 }
 public PredictionsService(LzLeagueContext db)
 {
     this.db = db;
 }
Example #5
0
 public UsersService(LzLeagueContext db)
 {
     this.db = db;
 }
Example #6
0
 public MatchService(LzLeagueContext db)
 {
     this.db = db;
 }