diff options
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces')
| -rw-r--r-- | src/Services/DevHive.Services/Interfaces/IRatingService.cs (renamed from src/Services/DevHive.Services/Interfaces/IRateService.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/IRateService.cs b/src/Services/DevHive.Services/Interfaces/IRatingService.cs index 359ef55..adb4313 100644 --- a/src/Services/DevHive.Services/Interfaces/IRateService.cs +++ b/src/Services/DevHive.Services/Interfaces/IRatingService.cs @@ -5,9 +5,9 @@ using DevHive.Services.Models.Post.Rating; namespace DevHive.Services.Interfaces { - public interface IRateService + public interface IRatingService { - Task<ReadPostRatingServiceModel> RatePost(RatePostServiceModel ratePostServiceModel); + Task<ReadRatingServiceModel> RatePost(CreateRatingServiceModel ratePostServiceModel); bool HasUserRatedThisPost(User user, Post post); } |
