Payment.java 142B

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