Exemple #1
0
 public PPTClassRepository(PPTContext context)
     : base(context)
 {
 }
Exemple #2
0
 public EntityRepository(PPTContext c)
 {
     this.context = c;
     this.dbSet   = c.Set <T>();
 }
Exemple #3
0
 public UnitOfWork(PPTContext c)
 {
     _context = c;
 }
Exemple #4
0
 public UnitOfWork()
 {
     _context = new PPTContext();
 }
 public PPTItemRepository(PPTContext context)
     : base(context)
 {
 }