Пример #1
0
 public void Copy(PersonallyIdentifiableInformation personallyIdentifiableInformation)
 {
     if (personallyIdentifiableInformation != null)
     {
         this.Id          = personallyIdentifiableInformation.Id;
         this.Type        = personallyIdentifiableInformation.Type;
         this.FirstName   = personallyIdentifiableInformation.FirstName;
         this.LastName    = personallyIdentifiableInformation.LastName;
         this.DateOfBirth = personallyIdentifiableInformation.DateOfBirth;
         this.Gender      = personallyIdentifiableInformation.Gender;
     }
 }
Пример #2
0
 public PersonallyIdentifiableInformation(PersonallyIdentifiableInformation personallyIdentifiableInformation)
 {
     Initialize();
     Copy(personallyIdentifiableInformation);
 }