/// <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);
 }
 public void AddToUsers(User record)
 {
     _context.AddToUsers(record);
 }
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="login">Initial value of the Login property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static User CreateUser(global::System.Int32 userId, global::System.String login, global::System.String password, global::System.Boolean isActive)
 {
     User user = new User();
     user.UserId = userId;
     user.Login = login;
     user.Password = password;
     user.IsActive = isActive;
     return user;
 }