/// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="userName">Initial value of the UserName property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="emailId">Initial value of the EmailId property.</param>
 /// <param name="active">Initial value of the Active property.</param>
 /// <param name="online">Initial value of the Online property.</param>
 /// <param name="creationDate">Initial value of the CreationDate property.</param>
 public static User CreateUser(global::System.Guid userId, global::System.String userName, global::System.String password, global::System.String emailId, global::System.Boolean active, global::System.Boolean online, global::System.DateTime creationDate)
 {
     User user = new User();
     user.UserId = userId;
     user.UserName = userName;
     user.Password = password;
     user.EmailId = emailId;
     user.Active = active;
     user.Online = online;
     user.CreationDate = creationDate;
     return user;
 }