Exemple #1
0
 public UnitOfWork()
 {
     _context = new EntityDataContext();
 }
 public GenericRepository(EntityDataContext Context)
 {
     this._context = new EntityDataContext();
     this._dbSet   = Context.Set <TEntity>();
 }