Beispiel #1
0
 public ClaimRepository(LadderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Beispiel #2
0
 public EndorsementRepository(LadderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Beispiel #3
0
 public LevelRepository(LadderDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Beispiel #4
0
 public SkillRepository(LadderDbContext dbContext, LevelRepository levelRepository)
 {
     this.dbContext       = dbContext;
     this.levelRepository = levelRepository;
 }