/// <summary>
 /// Create a new Customer object.
 /// </summary>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="customerName">Initial value of the CustomerName property.</param>
 /// <param name="userName">Initial value of the UserName property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="address">Initial value of the Address property.</param>
 /// <param name="email">Initial value of the email property.</param>
 /// <param name="contactNumber">Initial value of the ContactNumber property.</param>
 /// <param name="userType">Initial value of the UserType property.</param>
 public static Customer CreateCustomer(global::System.Int32 customerID, global::System.String customerName, global::System.String userName, global::System.String password, global::System.String address, global::System.String email, global::System.String contactNumber, global::System.String userType)
 {
     Customer customer = new Customer();
     customer.CustomerID = customerID;
     customer.CustomerName = customerName;
     customer.UserName = userName;
     customer.Password = password;
     customer.Address = address;
     customer.email = email;
     customer.ContactNumber = contactNumber;
     customer.UserType = userType;
     return customer;
 }
 /// <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);
 }