diff --git a/Main.java b/Main.java index d434b75..027e97b 100644 --- a/Main.java +++ b/Main.java @@ -5,15 +5,6 @@ public class Main { Scanner scanner = new Scanner(System.in); Onlineshop shop = new Onlineshop(); - // Produkte erstellen und zum Shop hinzufügen - Produkt gabel = new Produkt("Gabel", 1, 1.12F, 0.1F, 100); - Produkt messer = new Produkt("Messer", 2, 1.14F, 0.2F, 100); - Produkt loeffel = new Produkt("Löffel", 3, 1.15F, 0.15F, 100); - - shop.produktHinzufuegen(gabel); - shop.produktHinzufuegen(messer); - shop.produktHinzufuegen(loeffel); - // Hauptmenü-Schleife für den Benutzer boolean weiterEinkaufen = true; while (weiterEinkaufen) { diff --git a/Onlineshop.java b/Onlineshop.java index 73e81c0..14e5908 100644 --- a/Onlineshop.java +++ b/Onlineshop.java @@ -5,8 +5,14 @@ public class Onlineshop { private List produkte; // Achte darauf, dass der Typ korrekt ist private Warenkorb warenkorb; private List bestellungen; + private Produkt gabel; + private Produkt messer; + private Produkt loeffel; public Onlineshop() { + this.gabel=new Produkt("Gabel", 1, 1.12F, 0.1F, 100); + this.messer=new Produkt("Messer", 2, 1.14F, 0.2F, 100); + this.loeffel=new Produkt("Löffel", 3, 1.15F, 0.15F, 100); this.produkte = new ArrayList<>(); this.warenkorb = new Warenkorb(); this.bestellungen = new ArrayList<>(); @@ -19,6 +25,9 @@ public class Onlineshop { // API: Produkte zurückgeben (für Anzeige in der UI) public List getProdukte() { + produkte.add(gabel); + produkte.add(loeffel); + produkte.add(messer); return produkte; } diff --git a/out/production/Online_schop/Main.class b/out/production/Online_schop/Main.class index 77fb88e..ae8b717 100644 Binary files a/out/production/Online_schop/Main.class and b/out/production/Online_schop/Main.class differ