public PlayerController(GameGuideContext context, IJwtUtils jwt, IRegressionService regressionService) { _context = context; _jwt = jwt; _regressionService = regressionService; }
public UserController(GameGuideContext context, IJwtUtils jwt) { _context = context; _jwt = jwt; }
public GamesController(GameGuideContext context) { _context = context; }
public CustomersController(GameGuideContext context, IJwtUtils jwt) { _context = context; _jwt = jwt; }
public PlayersController(GameGuideContext context) { _context = context; }
public MigrationController(GameGuideContext dbContext) { _db = dbContext; }