/// <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="id">Initial value of the ID property.</param>
 /// <param name="login">Initial value of the Login property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="activeFlag">Initial value of the ActiveFlag property.</param>
 /// <param name="alterPasswordFlag">Initial value of the AlterPasswordFlag property.</param>
 public static User CreateUser(global::System.Decimal id, global::System.String login, global::System.String lastName, global::System.String firstName, global::System.String password, global::System.String activeFlag, global::System.String alterPasswordFlag)
 {
     User user = new User();
     user.ID = id;
     user.Login = login;
     user.LastName = lastName;
     user.FirstName = firstName;
     user.Password = password;
     user.ActiveFlag = activeFlag;
     user.AlterPasswordFlag = alterPasswordFlag;
     return user;
 }
 protected void AuthorizeUser(User user, bool remember)
 {
     FormsAuthentication.SetAuthCookie(user.GetLoginUpper(), remember);
 }