public ExistingLoanService(
     BorrowerRiskRatingContext dbContext,
     IMapper mapper,
     ILoanBorrowerRepository loanBorrowerRepository,
     IExistingLoanRepository repository) : base(dbContext, mapper, repository)
 {
     this.loanBorrowerRepository = loanBorrowerRepository;
     this.repository             = repository;
 }
Exemple #2
0
 public SavingsDepositService(
     BorrowerRiskRatingContext dbContext,
     IMapper mapper,
     ISavingsDepositRepository repository,
     ILoanBorrowerRepository loanBorrowerRepository
     ) : base(dbContext, mapper, repository)
 {
     this.repository             = repository;
     this.loanBorrowerRepository = loanBorrowerRepository;
 }
 public LoanBorrowerDependentService(
     DbContext dbContext,
     IMapper mapper,
     ILoanBorrowerDependentRepository <IEntity> repository,
     ILoanBorrowerRepository loanBorrowerRepository
     ) : base(dbContext, mapper, repository)
 {
     this.repository             = repository;
     this.loanBorrowerRepository = loanBorrowerRepository;
 }
Exemple #4
0
 public BorrowerChildService(BorrowerRiskRatingContext dbContext, IMapper mapper, IBorrowerChildRepository repository, ILoanBorrowerRepository loanBorrowerRepository) : base(dbContext, mapper, repository, loanBorrowerRepository)
 {
 }
 public CreditInvestigationService(BorrowerRiskRatingContext dbContext, IMapper mapper, ICreditInvestigationRepository repository,
                                   ILoanBorrowerRepository loanBorrowerRepository) : base(dbContext, mapper, repository)
 {
     this.repository             = repository;
     this.loanBorrowerRepository = loanBorrowerRepository;
 }