コード例 #1
0
 public UsersRepository(IGoodWillEntitiesContext context) : base(context)
 {
     _context = context;
     _dbSet   = context.Set <Users>();
 }
コード例 #2
0
 public GenericRepository(IGoodWillEntitiesContext context)
 {
     this._context = context;
     _entities     = context.Set <T>();
 }