aboutsummaryrefslogtreecommitdiff
path: root/API/Controllers/UserController.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-10 18:07:56 +0200
committertranstrike <transtrike@gmail.com>2020-12-10 18:07:56 +0200
commitaa1f51c5988926fb3b3e35df4904f60ecae10686 (patch)
treee304a7618bf6b9ee4ccc611bdcbc68d11649380f /API/Controllers/UserController.cs
parent4e75e0150d8ba9fdc82e61516b42d04dc09e9d59 (diff)
downloadDevHive-aa1f51c5988926fb3b3e35df4904f60ecae10686.tar
DevHive-aa1f51c5988926fb3b3e35df4904f60ecae10686.tar.gz
DevHive-aa1f51c5988926fb3b3e35df4904f60ecae10686.zip
Playing with the mapper
Diffstat (limited to 'API/Controllers/UserController.cs')
-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 e8a58b8..605b138 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, IMapper mapper)
+ public UserController(DevHiveContext context, Mapper mapper)
{
this._service = new UserService(context, mapper);
}