Exemple #1
0
 public UnitOfWork()
 {
     context = new UserProjectEntites();
 }
 public GenericRepository(UserProjectEntites _context)
 {
     context = _context;
     dbSet   = this.context.Set <TEntity>();
 }