impl de employe du buufe

This commit is contained in:
trochas
2024-11-28 11:12:28 +01:00
parent 9089916d13
commit d949e97583
4 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
public class Employe_du_buffet extends Employe{
private Compartiment compPoisson;
private Compartiment compViande;
private Compartiment compLegume;
private Compartiment compNouille;
Employe_du_buffet(Compartiment compPoisson,Compartiment compViande,Compartiment compLegume,Compartiment compNouille){
this.compPoisson = compPoisson;
this.compViande = compViande;
this.compLegume = compViande;
this.compNouille = compNouille;
}
}