Exemplo n.º 1
0
 public void Bedienen(Gast g)
 {
     bestellung.Add(new Bestellung(this, g.Bestellen(), g));
 }
Exemplo n.º 2
0
 public void Servieren(Nahrung ge, Gast g)
 {
     g.essen = ge;
 }
Exemplo n.º 3
0
 public Bestellung(Kellner ke, Nahrung ge, Gast g)
 {
     gericht = ge;
     kellner = ke;
     gast = g;
 }