public DbService(BlackjackGameContext blackjackGameContext) { _blackjackGameContext = blackjackGameContext; }
public BaseController(BlackjackGameContext context, ILogger <BaseController> logger) { _context = context; _logger = logger; }
public UserController(BlackjackGameContext context) { _context = context; }