efrei/java/tp-note/Versement.java

9 lines
144 B
Java
Raw Normal View History

2022-03-15 08:51:51 +01:00
package banque;
public class Versement extends Operation {
2022-03-15 09:50:45 +01:00
// Constructeur
Versement(double montant) {
super(montant);
}
2022-03-15 08:51:51 +01:00
}