diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs index 2a8c720..908e59c 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs @@ -63,6 +63,7 @@ /// with nested list /// IdentifierList GetUnassignedIdentifierList(); + /// /// Update a user in the system with the new values. /// @@ -73,10 +74,13 @@ /// object detailing the new properties to assign to the user. /// The Id Field should not be changed, or should be -1 for new users. /// + /// + /// int - ref param, value will be the UserId of the inserted or updated user + /// /// /// to indicate procedure status. /// - OperationResponse UpdateUser(User user); + OperationResponse UpdateUser(User user, out int userId); /// /// Create a new TimeLog Event in the repository. ///