using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bailey.LoanSupport { public class LoanSupport { static public decimal currentPrimeRate() { return .05m; } private string lName { get; set;} private decimal loanAmount {get; set;} private int lPayments {get; set;} public LoanSupport(string cName, decimal cAmount, int cPayments) { lName = cName; loanAmount = cAmount; lPayments = cPayments; } public decimal Payments() { return loanAmount / lPayments; } } }