aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces')
-rw-r--r--src/Services/DevHive.Services/Interfaces/ICommentService.cs2
-rw-r--r--src/Services/DevHive.Services/Interfaces/IRoleService.cs2
-rw-r--r--src/Services/DevHive.Services/Interfaces/IUserService.cs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/ICommentService.cs b/src/Services/DevHive.Services/Interfaces/ICommentService.cs
index e7409a8..6d92a5d 100644
--- a/src/Services/DevHive.Services/Interfaces/ICommentService.cs
+++ b/src/Services/DevHive.Services/Interfaces/ICommentService.cs
@@ -6,7 +6,7 @@ namespace DevHive.Services.Interfaces
{
public interface ICommentService
{
- Task<Guid> AddComment(CreateCommentServiceModel createPostServiceModel);
+ Task<Guid> AddComment(CreateCommentServiceModel createCommentServiceModel);
Task<ReadCommentServiceModel> GetCommentById(Guid id);
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);
}
diff --git a/src/Services/DevHive.Services/Interfaces/IUserService.cs b/src/Services/DevHive.Services/Interfaces/IUserService.cs
index daa5e5e..4a9ffc8 100644
--- a/src/Services/DevHive.Services/Interfaces/IUserService.cs
+++ b/src/Services/DevHive.Services/Interfaces/IUserService.cs
@@ -13,7 +13,7 @@ namespace DevHive.Services.Interfaces
Task<UserServiceModel> GetUserByUsername(string username);
Task<UserServiceModel> GetUserById(Guid id);
- Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateModel);
+ Task<UserServiceModel> UpdateUser(UpdateUserServiceModel updateUserServiceModel);
Task<ProfilePictureServiceModel> UpdateProfilePicture(UpdateProfilePictureServiceModel updateProfilePictureServiceModel);
Task<bool> DeleteUser(Guid id);