added out param to return created time log id.

This commit is contained in:
chris.watts90@outlook.com 2017-02-08 22:14:12 +00:00
parent 54d11ddf9d
commit e2859f12f8

View File

@ -81,15 +81,17 @@
/// <see cref="OperationResponse"/> to indicate procedure status.
/// </returns>
OperationResponse UpdateUser(User user, out int userId);
/// <summary>
/// Create a new TimeLog Event in the repository.
/// </summary>
/// <param name="identifier">
/// <see cref="Identifier"/> object with the Unique Id triggering the event
/// </param>
/// <param name="logId">The resultant Id of the inserted TimeLog</param>
/// <returns>
/// <see cref="OperationResponse"/> to indicate procedure status.
/// </returns>
OperationResponse LogEventTime(Identifier identifier);
OperationResponse LogEventTime(Identifier identifier, out int logId);
}
}