/// <summary>
 /// Create a new Customers object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 public static Customers CreateCustomers(global::System.Int32 id, global::System.String firstName, global::System.String lastName)
 {
     Customers customers = new Customers();
     customers.ID = id;
     customers.FirstName = firstName;
     customers.LastName = lastName;
     return customers;
 }
 /// <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(Customers customers)
 {
     base.AddObject("Customers", customers);
 }