public Person(string[] names, Adress adress) { Names = names; Adress = adress; }
public Person(Person other) { Names = other.Names; Adress = new Adress(other.Adress); }
public Adress(Adress otherAdress) { StreetName = otherAdress.StreetName; HouseNumber = otherAdress.HouseNumber; }