public GamePageModelService(ApplicationDbContext context)
 {
     _context = context;
 }
 public GamePageModelService(ApplicationDbContext context, IMemoryCache memoryCache)
 {
     _memoryCache = memoryCache;
     _context     = context;
 }