aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web/Controllers/RatingController.cs
diff options
context:
space:
mode:
authorDanail Dimitrov <danaildimitrov321@gmail.com>2021-03-03 10:57:49 +0200
committerDanail Dimitrov <danaildimitrov321@gmail.com>2021-03-03 10:57:49 +0200
commit6cc1bceebfa1ed01472303db226c000c2345b016 (patch)
treea314ce3fa93e96516dca4f47e6c07d506d79ca5e /src/Web/DevHive.Web/Controllers/RatingController.cs
parent95693f70a2314eab65ac289580d264fe12c42a06 (diff)
downloadDevHive-6cc1bceebfa1ed01472303db226c000c2345b016.tar
DevHive-6cc1bceebfa1ed01472303db226c000c2345b016.tar.gz
DevHive-6cc1bceebfa1ed01472303db226c000c2345b016.zip
Removed _userService from RatingController
Diffstat (limited to 'src/Web/DevHive.Web/Controllers/RatingController.cs')
-rw-r--r--src/Web/DevHive.Web/Controllers/RatingController.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Web/DevHive.Web/Controllers/RatingController.cs b/src/Web/DevHive.Web/Controllers/RatingController.cs
index 8c44243..f6ab0c5 100644
--- a/src/Web/DevHive.Web/Controllers/RatingController.cs
+++ b/src/Web/DevHive.Web/Controllers/RatingController.cs
@@ -16,14 +16,12 @@ namespace DevHive.Web.Controllers
public class RatingController
{
private readonly IRatingService _rateService;
- private readonly IUserService _userService;
private readonly IMapper _mapper;
private readonly IJwtService _jwtService;
- public RatingController(IRatingService rateService, IUserService userService, IMapper mapper, IJwtService jwtService)
+ public RatingController(IRatingService rateService, IMapper mapper, IJwtService jwtService)
{
this._rateService = rateService;
- this._userService = userService;
this._mapper = mapper;
this._jwtService = jwtService;
}