Ejemplo n.º 1
0
 public GradeRepo(FirstCoreAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public UserRepo(FirstCoreAppDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public StudentRepo(FirstCoreAppDbContext dbContext)
 {
     this._dbContext = dbContext;
 }
Ejemplo n.º 4
0
 public StudentService(FirstCoreAppDbContext dbContext)
 {
     this._dbContext = dbContext;
 }