コード例 #1
0
ファイル: RedBullMerch.cs プロジェクト: klexsi/oom
        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;
        }
コード例 #2
0
 public RedBullMerch(Groesse groesse, decimal anzahl)
 {
     this.Groesse = groesse;
     this.Anzahl  = anzahl;
 }