public GameController(
     GamePlatformDbContext context)
 {
     _context = context;
 }
 public TicketController(GamePlatformDbContext context,
                         UserManager <AppUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }