コード例 #1
0
        public RepaymentScheduleController(
            IRepaymentScheduleService repaymentScheduleService

            )
        {
            this.repaymentScheduleService = repaymentScheduleService;
        }
コード例 #2
0
 public LoanApplicationService(
     BorrowerRiskRatingContext dbContext,
     IMapper mapper,
     ILoanApplicationRepository repository,
     IRepaymentScheduleService repaymentScheduleService,
     IPersonalExpenseTemplateRepository personalExpenseTemplateRepository,
     IRepaymentScheduleRepository repaymentScheduleRepository
     ) : base(dbContext, mapper, repository)
 {
     this.repository = repository;
     this.repaymentScheduleService          = repaymentScheduleService;
     this.personalExpenseTemplateRepository = personalExpenseTemplateRepository;
     this.repaymentScheduleRepository       = repaymentScheduleRepository;
 }
コード例 #3
0
 public LoanApplicationController(
     ILoanApplicationService loanApplicationService,
     IBusinessService businessService,
     ILoanBorrowerService loanBorrowerService,
     ISavingsDepositService savingsDepositService,
     IFixedDepositService fixedDepositService,
     IExistingLoanService existingLoanService,
     IRepaymentScheduleService repaymentScheduleService,
     IBalanceSheetSummaryService balanceSheetSummaryService,
     IPersonalExpenseService personalExpenseService,
     IFinancialRatioService financialRatioService,
     ICashFlowService cashFlowService,
     IBuyOutLoanService buyOutLoanService,
     IImageGroupService imageGroupService,
     IUploadedImageRepository uploadedImageRepository,
     ICreditInvestigationService creditInvestigationService,
     ICollateralItemService collateralItemService,
     IBorrowerChildService borrowerChildService
     ) : base(loanApplicationService)
 {
     this.loanApplicationService     = loanApplicationService;
     this.businessService            = businessService;
     this.loanBorrowerService        = loanBorrowerService;
     this.savingsDepositService      = savingsDepositService;
     this.fixedDepositService        = fixedDepositService;
     this.existingLoanService        = existingLoanService;
     this.repaymentScheduleService   = repaymentScheduleService;
     this.balanceSheetSummaryService = balanceSheetSummaryService;
     this.personalExpenseService     = personalExpenseService;
     this.financialRatioService      = financialRatioService;
     this.cashFlowService            = cashFlowService;
     this.buyOutLoanService          = buyOutLoanService;
     this.imageGroupService          = imageGroupService;
     this.uploadedImageRepository    = uploadedImageRepository;
     this.creditInvestigationService = creditInvestigationService;
     this.collateralItemService      = collateralItemService;
     this.borrowerChildService       = borrowerChildService;
 }