Exemplo n.º 1
0
 public DatabaseRepository(OpenUniversityDbContext context)
 {
     _context = context;
     table    = _context.Set <T>();
 }
Exemplo n.º 2
0
 public DatabaseRepository()
 {
     _context = new OpenUniversityDbContext();
     table    = _context.Set <T>();
 }