public interface Payable { String getName(); double addHoursWorked(double h) throws Exception; void setPayRate(float dollars) throws Exception; double getSalaryTotal(); String getAccount(); }