Payment.java 190B

123456789
  1. package com.zipcoder.payment;
  2. public interface Payment extends Comparable<Payment>
  3. {
  4. public String getID();
  5. public String getPayerName();
  6. public String getShortDescription();
  7. }