/// <summary>
 /// Create a new Customers 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="isVerified">Initial value of the isVerified property.</param>
 public static Customers CreateCustomers(global::System.Int32 customerID, global::System.String name, global::System.String email, global::System.Boolean isVerified)
 {
     Customers customers = new Customers();
     customers.CustomerID = customerID;
     customers.Name = name;
     customers.Email = email;
     customers.isVerified = isVerified;
     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);
 }