public CCommande(CPlat plat, int quantite, float prix, CCuisinier refcli, CVoising refvoi)
 {
     this.Plat       = plat;
     this.Quantite   = quantite;
     this.Prix       = prix;
     this.RefClient  = refcli;
     this.RefVoising = refvoi;
 }
Beispiel #2
0
 //GererPlat
 public void AjouterPlat(CPlat plat)
 {
     ListPlat.Add(plat);
 }