public MembershipController(IRoleServiceExtended roleServiceExtended, IUserServiceExtended userService) { _roleServiceExtended = roleServiceExtended; _userService = userService; }
public RoleController(IRoleServiceExtended roleServiceExtended) { _roleServiceExtended = roleServiceExtended; }
public DashboardController(IRoleServiceExtended roleServiceExtended, IUserService userService) { _roleServiceExtended = roleServiceExtended; _userService = userService; }