示例#1
0
 public ProductRepository(PodiumDbContext databaseContext) : base(databaseContext)
 {
 }
示例#2
0
 public PropertyDetailsRepository(PodiumDbContext databaseContext) : base(databaseContext)
 {
 }
示例#3
0
 public MortgageProposalRepository(PodiumDbContext dbContext) : base(dbContext)
 {
 }
示例#4
0
 public BaseRepository(PodiumDbContext dbContext)
 {
     _dbContext = dbContext;
     _dbSet     = _dbContext.Set <T>();
 }
 public ApplicantRepository(PodiumDbContext dbContext) : base(dbContext)
 {
 }
示例#6
0
 public LoanCalculationRepository(PodiumDbContext databaseContext) : base(databaseContext)
 {
 }
示例#7
0
 public UserDetailsRepository(PodiumDbContext databaseContext) : base(databaseContext)
 {
 }
示例#8
0
 public MortgageRequirementRepository(PodiumDbContext dbContext) : base(dbContext)
 {
 }