/// <summary> /// Create a new User object. /// </summary> /// <param name="id">Initial value of the id property.</param> /// <param name="lastName">Initial value of the lastName property.</param> /// <param name="firstName">Initial value of the firstName property.</param> /// <param name="email">Initial value of the email property.</param> /// <param name="username">Initial value of the username property.</param> /// <param name="state">Initial value of the state property.</param> /// <param name="userType">Initial value of the userType property.</param> public static User CreateUser(global::System.Int32 id, global::System.String lastName, global::System.String firstName, global::System.String email, global::System.String username, global::System.String state, global::System.String userType) { User user = new User(); user.id = id; user.lastName = lastName; user.firstName = firstName; user.email = email; user.username = username; user.state = state; user.userType = userType; 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); }