diff options
author | crupest <crupest@outlook.com> | 2022-03-25 20:20:47 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-03-25 20:20:47 +0800 |
commit | 34305283aca89b8b2ebacd26ad3faf859a6a78b0 (patch) | |
tree | 7eb0d518111a4714056fe50b538bc0dd6311b4e3 /BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs | |
parent | 65b2e7f6984b8776e603bd8ae847c9e2a9bd5ad6 (diff) | |
download | timeline-34305283aca89b8b2ebacd26ad3faf859a6a78b0.tar.gz timeline-34305283aca89b8b2ebacd26ad3faf859a6a78b0.tar.bz2 timeline-34305283aca89b8b2ebacd26ad3faf859a6a78b0.zip |
…
Diffstat (limited to 'BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs')
-rw-r--r-- | BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs b/BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs deleted file mode 100644 index 8a05f452..00000000 --- a/BackEnd/Timeline/Services/User/BasicUserServiceExtensions.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System.Collections.Generic;
-using System.Threading.Tasks;
-
-namespace Timeline.Services.User
-{
- public static class BasicUserServiceExtensions
- {
- public static async Task ThrowIfUserNotExist(this IBasicUserService service, long userId)
- {
- if (!await service.CheckUserExistenceAsync(userId))
- {
- throw new EntityNotExistException(EntityTypes.User,
- new Dictionary<string, object> { ["id"] = userId });
- }
- }
- }
-}
|