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