public TokenService( IJwtUserService <TKey> jwtUserService, IOptions <JwtSettings> appSettings) { this.jwtUserService = jwtUserService; this.appSettings = appSettings.Value; }
public AdministrationService( IJwtUserService <TKey> jwtUserService, IConvertService <TKey> convertService, IPasswordService passwordService) { this.jwtUserService = jwtUserService; this.convertService = convertService; this.passwordService = passwordService; }
public JwtMiddleware( RequestDelegate next, IOptions <JwtSettings> appSettings, IJwtUserService <ObjectId> jwtUserService) { _next = next; this.jwtUserService = jwtUserService; _appSettings = appSettings.Value; }
public AuthenticationService( IJwtUserService <TKey> jwtUserService, IConvertService <TKey> convertService, ITokenService <TKey> tokenService, IPasswordService passwordService) { this.jwtUserService = jwtUserService; this.convertService = convertService; this.tokenService = tokenService; this.passwordService = passwordService; }
public JwtAccountService( IJwtUserService <TKey> jwtUserService, IJwtEmailSenderService <TKey> emailSenderService, IConvertService <TKey> convertService, ITokenService <TKey> tokenService, IPasswordService passwordService) { this.jwtUserService = jwtUserService; this.emailSenderService = emailSenderService; this.convertService = convertService; this.tokenService = tokenService; this.passwordService = passwordService; }
public JwtUsersController(IJwtUserService jwtUserService) { _jwtUserService = jwtUserService; }
public AuthManager(IJwtUserService jwtUserService, ITokenHelper tokenHelper) { _tokenHelper = tokenHelper; _jwtUserService = jwtUserService; }