/// <summary> /// Create a new User object. /// </summary> /// <param name="userId">Initial value of the UserId property.</param> /// <param name="firstName">Initial value of the FirstName property.</param> /// <param name="lastName">Initial value of the LastName property.</param> /// <param name="username">Initial value of the Username property.</param> /// <param name="password">Initial value of the Password property.</param> /// <param name="userRoleId">Initial value of the UserRoleId property.</param> public static User CreateUser(global::System.Int32 userId, global::System.String firstName, global::System.String lastName, global::System.String username, global::System.String password, global::System.Int32 userRoleId) { User user = new User(); user.UserId = userId; user.FirstName = firstName; user.LastName = lastName; user.Username = username; user.Password = password; user.UserRoleId = userRoleId; return user; }
/// <summary> /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToUsers(User user) { base.AddObject("Users", user); }