Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
ricardogj08
/
cursos
Watch
1
Star
0
Fork
0
Files
Issues
0
Tree:
62668a6b2d
Branches
Tags
master
cursos
/
java
/
java-desde-cero-edteam-2024
/
16-interfaces
/
PaymentMethod.java
PaymentMethod.java
88 B
History
Raw
1
2
3
4
5
interface PaymentMethod {
void processPayment(double amount);
void otherMethod();
}