finish class Kunde
parent
0ef1667de0
commit
61d5abb601
|
|
@ -8,4 +8,9 @@ public class Kunde {
|
|||
this.name = name;
|
||||
this.Adresse = Adresse;
|
||||
};
|
||||
|
||||
public Kunde(Kunde kunde) {
|
||||
this.name = kunde.name;
|
||||
this.Adresse = kunde.Adresse;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,12 @@ public class Produkt {
|
|||
};
|
||||
|
||||
public void UpdateProdukt(Produkt update) {
|
||||
this.id = update.id;
|
||||
this.name = update.name;
|
||||
this.transportGewicht = update.transportGewicht;
|
||||
this.netto = update.netto;
|
||||
this.mwStSatz = update.mwStSatz;
|
||||
this.lagerbestand = update.lagerbestand;
|
||||
};
|
||||
|
||||
public int BruttoPreis() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue