Exemple #1
0
 public Person(Person other)
 {
     this.name           = other.Name;
     this.Occupation     = other.Occupation;
     this.culinaryRating = other.CulinaryRating;
     this.birthDate      = other.BirthDate;
     this.hourlyRate     = other.GetRate();
     this.CanTellJokes   = other.CanTellJokes;
     this.Photo          = other.Photo;
     this.Comments       = other.Comments;
 }
Exemple #2
0
 public Person(Person other)
 {
     this.name = other.Name;
     this.Occupation = other.Occupation;
     this.culinaryRating = other.CulinaryRating;
     this.birthDate = other.BirthDate;
     this.hourlyRate = other.GetRate();
     this.CanTellJokes = other.CanTellJokes;
     this.Photo = other.Photo;
     this.Comments = other.Comments;
 }