public AuthController( JwtBearerSignInManager signInManager, CurrentContext currentContext) { _signInManager = signInManager; _currentContext = currentContext; }
public AccountsController( IUserService userService, ICipherService cipherService, UserManager<User> userManager, CurrentContext currentContext) { _userService = userService; _cipherService = cipherService; _userManager = userManager; _currentContext = currentContext; }