public virtual void CopyFrom(Person other)
		{
			HomeAddress.CopyFrom(other.HomeAddress);
			WorkAddress.CopyFrom(other.WorkAddress);
		}
Example #2
0
		public Person(Person other)
		: base(other)
		{
		}