aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Interfaces/IRoleService.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-02-15 21:50:36 +0200
committertranstrike <transtrike@gmail.com>2021-02-15 21:50:36 +0200
commitebf488fd51a2d1a83c124c380b9a1a98d62f42a2 (patch)
tree6d410c4dd5bba288ed86db0e86ef7d83d5fbb686 /src/Services/DevHive.Services/Interfaces/IRoleService.cs
parent4c03712af14c37718b7be5b23fcadeb86f2a2191 (diff)
downloadDevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.tar
DevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.tar.gz
DevHive-ebf488fd51a2d1a83c124c380b9a1a98d62f42a2.zip
Fixed formatting; Adjusted warnings; Adjusted variable names
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces/IRoleService.cs')
-rw-r--r--src/Services/DevHive.Services/Interfaces/IRoleService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/IRoleService.cs b/src/Services/DevHive.Services/Interfaces/IRoleService.cs
index 05df917..36e5a01 100644
--- a/src/Services/DevHive.Services/Interfaces/IRoleService.cs
+++ b/src/Services/DevHive.Services/Interfaces/IRoleService.cs
@@ -10,7 +10,7 @@ namespace DevHive.Services.Interfaces
Task<RoleServiceModel> GetRoleById(Guid id);
- Task<bool> UpdateRole(UpdateRoleServiceModel roleServiceModel);
+ Task<bool> UpdateRole(UpdateRoleServiceModel updateRoleServiceModel);
Task<bool> DeleteRole(Guid id);
}