/// <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="email">Initial value of the Email property.</param> /// <param name="createDate">Initial value of the CreateDate property.</param> /// <param name="createdBy">Initial value of the CreatedBy property.</param> /// <param name="isLandlord">Initial value of the IsLandlord property.</param> /// <param name="isDeleted">Initial value of the IsDeleted property.</param> public static User CreateUser(global::System.Guid userId, global::System.String username, global::System.String email, global::System.DateTime createDate, global::System.String createdBy, global::System.Boolean isLandlord, global::System.Boolean isDeleted) { User user = new User(); user.UserId = userId; user.Username = username; user.Email = email; user.CreateDate = createDate; user.CreatedBy = createdBy; user.IsLandlord = isLandlord; user.IsDeleted = isDeleted; 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); }