aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Interfaces/IRoleService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Services/Interfaces/IRoleService.cs')
-rw-r--r--src/DevHive.Services/Interfaces/IRoleService.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/DevHive.Services/Interfaces/IRoleService.cs b/src/DevHive.Services/Interfaces/IRoleService.cs
deleted file mode 100644
index d47728c..0000000
--- a/src/DevHive.Services/Interfaces/IRoleService.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Threading.Tasks;
-using DevHive.Services.Models.Identity.Role;
-
-namespace DevHive.Services.Interfaces
-{
- public interface IRoleService
- {
- Task<Guid> CreateRole(CreateRoleServiceModel roleServiceModel);
-
- Task<RoleServiceModel> GetRoleById(Guid id);
-
- Task<bool> UpdateRole(UpdateRoleServiceModel roleServiceModel);
-
- Task<bool> DeleteRole(Guid id);
- }
-}