public GameRepository(RiotContext context)
 {
     _context = context;
 }
 public UserRepository(RiotContext context)
 {
     _context     = context;
     _userManager = new UserManager <ApplicationUser>(new UserStore <ApplicationUser>(_context));
 }