Beispiel #1
0
 protected GenericRepository(NaijaSchoolsContext context)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public GenericSaveRepository(NaijaSchoolsContext context)
 {
     _context    = context;
     _unitofWork = new UnitofWork <TEntity>(_context);
 }
Beispiel #3
0
 public UnitofWork(NaijaSchoolsContext context)
 {
     throw new NotImplementedException();
 }
 public RatingRepo(NaijaSchoolsContext context)
     : base(context)
 {
     _context = context;
 }