public UserService(RankedContext context, IConfiguration config) { _config = config; _context = context; }
public ForgotPasswordService(RankedContext context, IConfiguration config) { _context = context; _config = config; }
public CheckForAchievements(RankedContext context, int userId) { _context = context; _userId = userId; _newAchievementPoints = 0; }
public TestService(RankedContext context, IMemoryCache cache) { _context = context; _cache = cache; }
public AchievementService(RankedContext context, IMemoryCache cache) { _context = context; _cache = cache; }
public ContactService(RankedContext context, IConfiguration config) { _config = config; }
public ResultService(RankedContext context) { _context = context; }
public LeaderboardService(RankedContext context, IMemoryCache cache) { _context = context; _cache = cache; }