public RedBullMerch(Groesse groesse, decimal anzahl) { if (anzahl < 0) { throw new ArgumentException("Die Anzahl muss eingegegebn werden!", nameof(anzahl)); } if (anzahl > 10) { throw new ArgumentException("Es darf nicht mehr als 10 Stk. gekauft werden!", nameof(anzahl)); } this.Groesse = groesse; this.Anzahl = anzahl; }
public RedBullMerch(Groesse groesse, decimal anzahl) { this.Groesse = groesse; this.Anzahl = anzahl; }