Example #1
0
 public void recalculateInterest() {
   this.newLoanAmount = loanExtensionPolicy.recalculateInterest(oldLoanAmount);
 }
Example #2
0
 public void determineRepaymentDate() {
   this.extendedRepaymentDate =
       loanExtensionPolicy.getPaymentDate(new LocalDate(oldRepaymentDate)).toDate();
 }