コード例 #1
0
 public void InitializeDbContext()
 {
     this.dbContext = MockDbContext.GetContext();
 }
コード例 #2
0
 public ArticlesService(LzLeagueContext db)
 {
     this.db = db;
 }
コード例 #3
0
 public TeamsService(LzLeagueContext db)
 {
     this.db = db;
 }
コード例 #4
0
 public PredictionsService(LzLeagueContext db)
 {
     this.db = db;
 }
コード例 #5
0
ファイル: UsersService.cs プロジェクト: ELalkovski/LzLeague
 public UsersService(LzLeagueContext db)
 {
     this.db = db;
 }
コード例 #6
0
ファイル: MatchService.cs プロジェクト: ELalkovski/LzLeague
 public MatchService(LzLeagueContext db)
 {
     this.db = db;
 }