aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Controllers/RoleController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Controllers/RoleController.cs')
-rw-r--r--src/DevHive.Web/Controllers/RoleController.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DevHive.Web/Controllers/RoleController.cs b/src/DevHive.Web/Controllers/RoleController.cs
index fc05481..6b81ab8 100644
--- a/src/DevHive.Web/Controllers/RoleController.cs
+++ b/src/DevHive.Web/Controllers/RoleController.cs
@@ -17,9 +17,9 @@ namespace DevHive.Web.Controllers
private readonly RoleService _roleService;
private readonly IMapper _roleMapper;
- public RoleController(DevHiveContext context, IMapper mapper)
+ public RoleController(RoleService roleService, IMapper mapper)
{
- this._roleService = new RoleService(context, mapper);
+ this._roleService = roleService;
this._roleMapper = mapper;
}