public virtual void CopyFrom(House other)
		{
			Address = other.Address;
		}
Beispiel #2
0
		public House(House other)
		: base(other)
		{
		}
Beispiel #3
0
 public virtual void CopyFrom(House other)
 {
     Address = other.Address;
 }