WIP public list

This commit is contained in:
2023-07-25 09:24:18 +02:00
parent e44385473f
commit f4a0af33b0
5 changed files with 74 additions and 23 deletions

View File

@@ -11,7 +11,7 @@ class Kunde
string plz;
string ort;
string land;
bool rechnungerstellt = false;
List<Artikel> artikels = new List<Artikel>();
public DateTime Bezahldatum { get; set; }
@@ -41,8 +41,6 @@ class Kunde
}
}
public bool Rechnungerstellt { get => rechnungerstellt; set => rechnungerstellt = value; }
public Kunde(string Name, string Strasse, string Hausnummer, string PLZ, string Ort, string Land)
{
name = Name;