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