Beispiel #1
0
 public PersonSmall(PrivateId privateId, Name name, Gender gender, Address address, string placeOfBirth,
                    Incapacity incapacity, SpecialMarks specialMarks, DateTime?dateOfDeath)
 {
     PrivateId    = privateId;
     Name         = name;
     Gender       = gender;
     Address      = address;
     PlaceOfBirth = placeOfBirth;
     Incapacity   = incapacity;
     SpecialMarks = specialMarks;
     DateOfDeath  = dateOfDeath;
 }
Beispiel #2
0
 public PersonMedium(PrivateId privateId, PublicId publicId, Ptal ptal, Name name, DateTime?dateOfBirth,
                     Gender gender, Address address, string placeOfBirth, SpecialMarks specialMarks, Incapacity incapacity,
                     CivilStatus civilStatus, DateTime?dateOfDeath)
     : base(privateId, name, gender, address, placeOfBirth, incapacity, specialMarks, dateOfDeath)
 {
     PublicId    = publicId;
     Ptal        = ptal;
     DateOfBirth = dateOfBirth;
     CivilStatus = civilStatus;
 }