Payment.java 200B

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