/// <summary>
 /// Create a new Customer1 object.
 /// </summary>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="contactName">Initial value of the ContactName property.</param>
 public static Customer1 CreateCustomer1(global::System.String customerID, global::System.String contactName)
 {
     Customer1 customer1 = new Customer1();
     customer1.CustomerID = customerID;
     customer1.ContactName = contactName;
     return customer1;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Customers1 EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCustomers1(Customer1 customer1)
 {
     base.AddObject("Customers1", customer1);
 }