Exemplo n.º 1
0
 public DbService(BlackjackGameContext blackjackGameContext)
 {
     _blackjackGameContext = blackjackGameContext;
 }
Exemplo n.º 2
0
 public BaseController(BlackjackGameContext context, ILogger <BaseController> logger)
 {
     _context = context;
     _logger  = logger;
 }
Exemplo n.º 3
0
 public UserController(BlackjackGameContext context)
 {
     _context = context;
 }