Exemplo n.º 1
0
 public UnitOfWork()
 {
     context = new SaleContext();
 }
Exemplo n.º 2
0
 public GenericRepository(SaleContext context)
 {
     this._context = context;
     _entitySet    = this._context.Set <TEntity>();
 }