Inheritance: System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the Customers EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCustomers(Customer customer)
 {
     base.AddObject("Customers", customer);
 }
 /// <summary>
 /// Create a new Customer object.
 /// </summary>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="phone">Initial value of the Phone property.</param>
 public static Customer CreateCustomer(global::System.Int32 customerID, global::System.String name, global::System.String email, global::System.String phone)
 {
     Customer customer = new Customer();
     customer.CustomerID = customerID;
     customer.Name = name;
     customer.Email = email;
     customer.Phone = phone;
     return customer;
 }