public virtual ImmutableAddressBuilder Set(ImmutableAddress other)
 {
     SetStreet(other.Street);
     SetCity(other.City);
     SetZipCode(other.ZipCode);
     return(this);
 }
		public virtual ImmutableAddressBuilder Set(ImmutableAddress other)
		{
			SetStreet(other.Street);
			SetCity(other.City);
			SetZipCode(other.ZipCode);
			return this;
		}
		public virtual ImmutablePersonBuilder AddToWorkAddressCol(ImmutableAddress workAddressCol)
		{
			this.workAddressCol.Add(workAddressCol);
			return this;
		}
		public virtual ImmutablePersonBuilder AddToHomeAddressCol(ImmutableAddress homeAddressCol)
		{
			this.homeAddressCol.Add(homeAddressCol);
			return this;
		}
Esempio n. 5
0
 public ImmutableAddress(ImmutableAddress other)
     : base(other)
 {
 }
Esempio n. 6
0
		public ImmutableAddress(ImmutableAddress other)
		: base(other)
		{
		}
Esempio n. 7
0
 public virtual ImmutablePersonBuilder AddToWorkAddressCol(ImmutableAddress workAddressCol)
 {
     this.workAddressCol.Add(workAddressCol);
     return(this);
 }
Esempio n. 8
0
 public virtual ImmutablePersonBuilder AddToHomeAddressCol(ImmutableAddress homeAddressCol)
 {
     this.homeAddressCol.Add(homeAddressCol);
     return(this);
 }