/// <summary>
 /// Deprecated Method for adding a new object to the Addresses EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToAddresses(Address address)
 {
     base.AddObject("Addresses", address);
 }
 /// <summary>
 /// Create a new Address object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="userInfoID">Initial value of the UserInfoID property.</param>
 /// <param name="isDeleted">Initial value of the IsDeleted property.</param>
 public static Address CreateAddress(global::System.Guid id, global::System.Guid userInfoID, global::System.Boolean isDeleted)
 {
     Address address = new Address();
     address.ID = id;
     address.UserInfoID = userInfoID;
     address.IsDeleted = isDeleted;
     return address;
 }