BitsNPerices.LoanPaymentProcessorService.GetPayments C# (CSharp) Method

GetPayments() public method

public GetPayments ( ) : void
return void
        public void GetPayments()
        {
            Loan loan = new Loan { Amount = 10000, DueDate = DateTime.Now };

            decimal newPayment = loan.GetNextPaymentAmount();
        }
LoanPaymentProcessorService