Esempio n. 1
0
        public Person(
            string vorname,
            string familienname,
            Stadt geborenIn,
            IEnumerable <Stadt> wohntIn
            )
        {
            Vorname      = vorname;
            Familienname = familienname;
            GeborenIn    = geborenIn;

            var wi = wohntIn.ToArray();

            if (wi.Length == 0)
            {
                throw new Exception("Kein Wohnort angegeben.");
            }

            WohntIn.AddRange(wi);
        }
Esempio n. 2
0
 public PersonBuilder addWohntIn(Stadt wohntIn)
 {
     WohntIn.Add(wohntIn);
     return(this);
 }
Esempio n. 3
0
 public LandBuilder setHauptStadt(Stadt hauptStadt)
 {
     HauptStadt = hauptStadt;
     return(this);
 }
Esempio n. 4
0
 public PersonBuilder setGeborenIn(Stadt geborenIn)
 {
     GeborenIn = geborenIn;
     return(this);
 }