initilisation des stand, et de l'employer du Buffet
This commit is contained in:
@@ -1,4 +1,14 @@
|
|||||||
public class Restaurant {
|
public class Restaurant {
|
||||||
protected final int MAX_CLIENTS = 25;
|
protected final int MAX_CLIENTS = 25;
|
||||||
private int nbClient = 0;
|
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);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user