diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs index 908e59c..24b0e4c 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/IRepository.cs @@ -81,15 +81,17 @@ /// to indicate procedure status. /// OperationResponse UpdateUser(User user, out int userId); + /// /// Create a new TimeLog Event in the repository. /// /// /// object with the Unique Id triggering the event /// + /// The resultant Id of the inserted TimeLog /// /// to indicate procedure status. /// - OperationResponse LogEventTime(Identifier identifier); + OperationResponse LogEventTime(Identifier identifier, out int logId); } }