added out param to return created time log id.
This commit is contained in:
parent
54d11ddf9d
commit
e2859f12f8
@ -81,15 +81,17 @@
|
|||||||
/// <see cref="OperationResponse"/> to indicate procedure status.
|
/// <see cref="OperationResponse"/> to indicate procedure status.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
OperationResponse UpdateUser(User user, out int userId);
|
OperationResponse UpdateUser(User user, out int userId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a new TimeLog Event in the repository.
|
/// Create a new TimeLog Event in the repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="identifier">
|
/// <param name="identifier">
|
||||||
/// <see cref="Identifier"/> object with the Unique Id triggering the event
|
/// <see cref="Identifier"/> object with the Unique Id triggering the event
|
||||||
/// </param>
|
/// </param>
|
||||||
|
/// <param name="logId">The resultant Id of the inserted TimeLog</param>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// <see cref="OperationResponse"/> to indicate procedure status.
|
/// <see cref="OperationResponse"/> to indicate procedure status.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
OperationResponse LogEventTime(Identifier identifier);
|
OperationResponse LogEventTime(Identifier identifier, out int logId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user