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); }
public PersonBuilder addWohntIn(Stadt wohntIn) { WohntIn.Add(wohntIn); return(this); }
public LandBuilder setHauptStadt(Stadt hauptStadt) { HauptStadt = hauptStadt; return(this); }
public PersonBuilder setGeborenIn(Stadt geborenIn) { GeborenIn = geborenIn; return(this); }