/// <summary> /// Create a new Customer object. /// </summary> /// <param name="id">Initial value of the ID property.</param> /// <param name="editTimeStamp">Initial value of the EditTimeStamp property.</param> /// <param name="address">Initial value of the Address property.</param> public static Customer CreateCustomer(global::System.Int32 id, global::System.Byte[] editTimeStamp, Address address) { Customer customer = new Customer(); customer.ID = id; customer.EditTimeStamp = editTimeStamp; customer.Address = StructuralObject.VerifyComplexObjectIsNotNull(address, "Address"); return customer; }
/// <summary> /// Deprecated Method for adding a new object to the Customers EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCustomers(Customer customer) { base.AddObject("Customers", customer); }