From a672e10faad434899d81ef9d0d0d5adbbc7841da Mon Sep 17 00:00:00 2001 From: crupest Date: Fri, 30 Apr 2021 16:52:55 +0800 Subject: refactor: ... --- .../Timeline/Services/Api/IBookmarkTimelineService.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'BackEnd/Timeline/Services/Api/IBookmarkTimelineService.cs') diff --git a/BackEnd/Timeline/Services/Api/IBookmarkTimelineService.cs b/BackEnd/Timeline/Services/Api/IBookmarkTimelineService.cs index 18feee54..63b4affa 100644 --- a/BackEnd/Timeline/Services/Api/IBookmarkTimelineService.cs +++ b/BackEnd/Timeline/Services/Api/IBookmarkTimelineService.cs @@ -15,7 +15,7 @@ namespace Timeline.Services.Api /// /// User id of bookmark owner. /// Id of Bookmark timelines in order. - /// Thrown when user does not exist. + /// Thrown when user does not exist. Task> GetBookmarksAsync(long userId); /// @@ -26,8 +26,8 @@ namespace Timeline.Services.Api /// If true it will throw when user does not exist. /// If true it will throw when timeline does not exist. /// True if timeline is a bookmark. Otherwise false. - /// Throw if user does not exist and is true. - /// Thrown if timeline does not exist and is true. + /// Throw if user does not exist and is true. + /// Thrown if timeline does not exist and is true. Task IsBookmarkAsync(long userId, long timelineId, bool checkUserExistence = true, bool checkTimelineExistence = true); /// @@ -36,8 +36,8 @@ namespace Timeline.Services.Api /// User id of bookmark owner. /// Timeline id. /// True if timeline is added to bookmark. False if it already is. - /// Thrown when user does not exist. - /// Thrown when timeline does not exist. + /// Thrown when user does not exist. + /// Thrown when timeline does not exist. Task AddBookmarkAsync(long userId, long timelineId); /// @@ -46,8 +46,8 @@ namespace Timeline.Services.Api /// User id of bookmark owner. /// Timeline id. /// True if deletion is performed. False if bookmark does not exist. - /// Thrown when user does not exist. - /// Thrown when timeline does not exist. + /// Thrown when user does not exist. + /// Thrown when timeline does not exist. Task RemoveBookmarkAsync(long userId, long timelineId); /// @@ -56,8 +56,8 @@ namespace Timeline.Services.Api /// User id of bookmark owner. /// Timeline name. /// New position. Starts at 1. - /// Thrown when user does not exist. - /// Thrown when timeline does not exist. + /// Thrown when user does not exist. + /// Thrown when timeline does not exist. /// Thrown when the timeline is not a bookmark. Task MoveBookmarkAsync(long userId, long timelineId, long newPosition); } -- cgit v1.2.3