aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers
diff options
context:
space:
mode:
Diffstat (limited to 'API/Controllers')
-rw-r--r--API/Controllers/UserController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/API/Controllers/UserController.cs b/API/Controllers/UserController.cs
index 605b138..e8a58b8 100644
--- a/API/Controllers/UserController.cs
+++ b/API/Controllers/UserController.cs
@@ -16,7 +16,7 @@ namespace API.Controllers
{
private readonly UserService _service;
- public UserController(DevHiveContext context, Mapper mapper)
+ public UserController(DevHiveContext context, IMapper mapper)
{
this._service = new UserService(context, mapper);
}