initial commit

master
3007492 2024-10-17 15:36:41 +02:00
parent a80da0f00a
commit 1d5ffedae4
1 changed files with 5 additions and 1 deletions

View File

@ -14,12 +14,16 @@ public class Produkt {
this.preis = preis; this.preis = preis;
this.gewicht = gewicht; this.gewicht = gewicht;
this.bestand = bestand; this.bestand = bestand;
} }
public String getName() { public String getName() {
return name; return name;
} }
public String setName(){
return name;
}
public String getBeschreibung() { public String getBeschreibung() {
return beschreibung; return beschreibung;
} }