Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 4
0
 public TestService(RankedContext context, IMemoryCache cache)
 {
     _context = context;
     _cache   = cache;
 }
 public AchievementService(RankedContext context, IMemoryCache cache)
 {
     _context = context;
     _cache   = cache;
 }
Ejemplo n.º 6
0
 public ContactService(RankedContext context, IConfiguration config)
 {
     _config = config;
 }
Ejemplo n.º 7
0
 public ResultService(RankedContext context)
 {
     _context = context;
 }
Ejemplo n.º 8
0
 public LeaderboardService(RankedContext context, IMemoryCache cache)
 {
     _context = context;
     _cache   = cache;
 }