Payment.java 160B

12345678910
  1. public interface Payment extends Comparable<Payment>{
  2. public long getId();
  3. public String getPayerName();
  4. public String getShortDescription();
  5. }