/// <summary> /// Create a new Customer object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="name">Initial value of the name property.</param> /// <param name="address">Initial value of the address property.</param> /// <param name="city">Initial value of the city property.</param> public static Customer CreateCustomer(global::System.Int32 id, global::System.String name, global::System.String address, global::System.String city) { Customer customer = new Customer(); customer.id = id; customer.name = name; customer.address = address; customer.city = city; return customer; }
/// <summary> /// Deprecated Method for adding a new object to the Customer EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToCustomer(Customer customer) { base.AddObject("Customer", customer); }