diff --git a/src/Restaurant.java b/src/Restaurant.java index dd9feac..fcd75bb 100644 --- a/src/Restaurant.java +++ b/src/Restaurant.java @@ -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); + + } \ No newline at end of file