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