public InternalLoanCashFlowRepository(
     IExistingLoanRepository existingLoanRepository,
     IExistingLoanRepaymentScheduleRepository existingLoanRepaymentScheduleRepository
     )
 {
     this.existingLoanRepository = existingLoanRepository;
     this.existingLoanRepaymentScheduleRepository = existingLoanRepaymentScheduleRepository;
 }
 public InternalLoanAnnualAmortizationRepository(
     IExistingLoanRepository existingLoanRepository,
     IExistingLoanRepaymentScheduleRepository existingLoanRepaymentScheduleRepository
     )
 {
     this.existingLoanRepository = existingLoanRepository;
     this.existingLoanRepaymentScheduleRepository = existingLoanRepaymentScheduleRepository;
 }