mise à jour création commande

This commit is contained in:
sio 2024-09-12 09:38:59 +02:00
parent 43cbdc54de
commit 935512aa7b

View File

@ -21,8 +21,8 @@ public class Test {
Entreprise lEntreprise=new Entreprise("MusicAndCo");
Instrument instr1=new Instrument(1,"Piano",10, 8300f);
Instrument instr2=new Instrument(2,"Violon",9, 105f);
Instrument instr1=new Instrument(3,"Guitare",8, 575f);
Commande laCommande = new Commande(1,"Thevenot","12/09/2024");
Instrument instr3=new Instrument(3,"Guitare",8, 575f);
Commande laCommande = new Commande(1,1,"12/09/2024");
lEntreprise.ajouterCommande(laCommande);
}