efrei/uml-poo/etudiant/Prof.java

9 lines
168 B
Java
Raw Normal View History

2021-09-20 13:52:48 +02:00
public class Prof implements ISalarie {
2021-09-20 14:38:35 +02:00
public double getSalaire() {
return 30000;
}
public String getTypeContrat() {
return "CDI";
}
2021-09-20 13:52:48 +02:00
}