BitsNPerices.InterestOnlyPaymentStategy.GetAmount C# (CSharp) Method

GetAmount() public method

public GetAmount ( Loan loan ) : decimal
loan Loan
return decimal
        public decimal GetAmount(Loan loan)
        {
            return loan.Amount * 0.10m;
        }
InterestOnlyPaymentStategy