aboutsummaryrefslogtreecommitdiff
path: root/src/Web/DevHive.Web
diff options
context:
space:
mode:
Diffstat (limited to 'src/Web/DevHive.Web')
-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;
}