public GenericRepository(UserRegisterEntites _context)
 {
     context = _context;
     dbSet   = this.context.Set <TEntity>();
 }
Example #2
0
 public UnitOfWork()
 {
     context = new UserRegisterEntites();
 }