PaymentMethod.java 88 B

12345
  1. interface PaymentMethod {
  2. void processPayment(double amount);
  3. void otherMethod();
  4. }