Esempio n. 1
0
 public UnitOfWork(ShoeserDbContext context)
 {
     this.context = context;
 }
Esempio n. 2
0
 public GenericRepository(ShoeserDbContext context)
 {
     this.context = context;
     this.dbSet   = context.Set <T>();
 }