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