public EFDataStore(InsuranceDbContext dbContext) { this.dbContext = dbContext; this.offerRepository = new EFOfferRepository(this.dbContext); this.productRepository = new EFProductRepository(this.dbContext); this.policyRepository = new EFPolicyRepository(this.dbContext); }
public EFProductRepository(InsuranceDbContext dbContext) { this.dbContext = dbContext; }
public EFPolicyRepository(InsuranceDbContext dbContext) { this.dbContext = dbContext; }
public EFOfferRepository(InsuranceDbContext dbContext) { this.dbContext = dbContext; }