public virtual ImmutablePersonBuilder Set(ImmutablePerson other)
		{
			ClearHomeAddressCol();
			AddToHomeAddressCol(other.HomeAddressCol);
			ClearWorkAddressCol();
			AddToWorkAddressCol(other.WorkAddressCol);
			ClearStringCol();
			AddToStringCol(other.StringCol);
			ClearStringCol2();
			AddToStringCol2(other.StringCol2);
			ClearDoubleCol();
			AddToDoubleCol(other.DoubleCol);
			ClearDoubleCol2();
			AddToDoubleCol2(other.DoubleCol2);
			SetHomeAddressProp(other.HomeAddressProp);
			SetWorkAddressProp(other.WorkAddressProp);
			return this;
		}
Beispiel #2
0
 public virtual ImmutablePersonBuilder Set(ImmutablePerson other)
 {
     ClearHomeAddressCol();
     AddToHomeAddressCol(other.HomeAddressCol);
     ClearWorkAddressCol();
     AddToWorkAddressCol(other.WorkAddressCol);
     ClearStringCol();
     AddToStringCol(other.StringCol);
     ClearStringCol2();
     AddToStringCol2(other.StringCol2);
     ClearDoubleCol();
     AddToDoubleCol(other.DoubleCol);
     ClearDoubleCol2();
     AddToDoubleCol2(other.DoubleCol2);
     SetHomeAddressProp(other.HomeAddressProp);
     SetWorkAddressProp(other.WorkAddressProp);
     return(this);
 }
Beispiel #3
0
		public ImmutablePerson(ImmutablePerson other)
		: base(other)
		{
		}
Beispiel #4
0
 public ImmutablePerson(ImmutablePerson other)
     : base(other)
 {
 }