Payment.java 169B

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