Payment.java 170B

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