public IndividualRepository(GearHunterDbContext context) : base(context) { this.dbSet = context.Set <Individual>(); }
public GenericRepository(GearHunterDbContext context) { this.context = context; this.dbSet = context.Set <TEntity>(); }
public CompanyRepository(GearHunterDbContext context) : base(context) { this.dbSet = context.Set <Company>(); }