From e2859f12f8b773727b94eeae09507843902a95f9 Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Wed, 8 Feb 2017 22:14:12 +0000 Subject: [PATCH] added out param to return created time log id. --- .../WindowsDataCenter/Interfaces/IRepository.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); } }