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