initilisation des stand, et de l'employer du Buffet

This commit is contained in:
trochas
2024-11-28 10:58:21 +01:00
parent f64b346749
commit 9089916d13

View File

@@ -1,4 +1,14 @@
public class Restaurant {
protected final int MAX_CLIENTS = 25;
private int nbClient = 0;
private Compartiment compPoisson = new Compartiment();
private Compartiment compViande = new Compartiment();
private Compartiment compLegume = new Compartiment();
private Compartiment compNouille = new Compartiment();
Employe_bu_buffet employeB = new Employe_bu_buffet(compPoisson,compViande,compLegume,compNouille);
}