Пример #1
0
 public virtual void AccrueInterest(IInterestStrategy interestStrategy)
 {
     this.AccountBalance += interestStrategy.CalculateInterest(this.AccountBalance);
 }