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