Payment.java 144B

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