/// <summary>
 /// Create a new CustomerInformation object.
 /// </summary>
 /// <param name="userID">Initial value of the UserID property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="joinDate">Initial value of the JoinDate property.</param>
 public static CustomerInformation CreateCustomerInformation(global::System.String userID, global::System.String name, global::System.DateTime joinDate)
 {
     CustomerInformation customerInformation = new CustomerInformation();
     customerInformation.UserID = userID;
     customerInformation.Name = name;
     customerInformation.JoinDate = joinDate;
     return customerInformation;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the CustomerInformations EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToCustomerInformations(CustomerInformation customerInformation)
 {
     base.AddObject("CustomerInformations", customerInformation);
 }