Payment.java 190B

12345678910
  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. }