/// <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); }
/// <summary> /// Create a new User object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="username">Initial value of the Username property.</param> /// <param name="password">Initial value of the Password property.</param> /// <param name="companyId">Initial value of the CompanyId property.</param> /// <param name="departmentId">Initial value of the DepartmentId property.</param> /// <param name="branchId">Initial value of the BranchId property.</param> /// <param name="userTypeId">Initial value of the UserTypeId property.</param> public static User CreateUser(global::System.Guid id, global::System.String username, global::System.String password, global::System.Int32 companyId, global::System.Int32 departmentId, global::System.Int32 branchId, global::System.Int32 userTypeId) { User user = new User(); user.Id = id; user.Username = username; user.Password = password; user.CompanyId = companyId; user.DepartmentId = departmentId; user.BranchId = branchId; user.UserTypeId = userTypeId; return user; }