Exemple #1
0
 public GenericRepository()
 {
     this._context = new IOOPPContext();
     table         = _context.Set <T>();
 }
Exemple #2
0
 public GenericRepository(IOOPPContext _context)
 {
     this._context = _context;
     table         = _context.Set <T>();
 }
Exemple #3
0
 public EtudiantRepository(IOOPPContext repositoryPatternDemoContext) : base(repositoryPatternDemoContext)
 {
 }