From 9089916d13258d662744731406a18577e79bfd4d Mon Sep 17 00:00:00 2001 From: trochas Date: Thu, 28 Nov 2024 10:58:21 +0100 Subject: [PATCH] initilisation des stand, et de l'employer du Buffet --- src/Restaurant.java | 10 ++++++++++ 1 file changed, 10 insertions(+) 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