public IdentityService(ApplicationContext ctx, IHttpContextAccessor context, UserPasswordService userPasswordService) { _context = context; _ctx = ctx; _userPasswordService = userPasswordService; _tokenName = "x-access-token"; }
public UserService(ApplicationContext ctx, UserPasswordService userPasswordService) { _ctx = ctx; _userPasswordService = userPasswordService; }