Exemplo n.º 1
0
 public UnitOfWork(DemoContext context)
 {
     _context = context;
 }
 public GenericRepository(DemoContext context)
 {
     Context = context;
     DbSet   = Context.Set <T>();
 }
Exemplo n.º 3
0
 public StudentRepository(DemoContext context) : base(context)
 {
 }