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