public EfWebsiteRepository(ProductPriceTrackingDbContext context) { this.context = context; }
public EfTrackingRecordRepository(ProductPriceTrackingDbContext context) { this.context = context; }
public EfAppUserRepository(ProductPriceTrackingDbContext context) { this.context = context; }
public EfGenericRepository(ProductPriceTrackingDbContext context) { this.context = context; table = context.Set <TEntity>(); }