public interface Loanable { public float calculateMonthlyPayment(); public void makePayment(float amount); public void renew(int numMonths); }