Ejemplo n.º 1
0
 public PlayerController(GameGuideContext context, IJwtUtils jwt, IRegressionService regressionService)
 {
     _context           = context;
     _jwt               = jwt;
     _regressionService = regressionService;
 }
Ejemplo n.º 2
0
 public UserController(GameGuideContext context, IJwtUtils jwt)
 {
     _context = context;
     _jwt     = jwt;
 }
Ejemplo n.º 3
0
 public GamesController(GameGuideContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public CustomersController(GameGuideContext context, IJwtUtils jwt)
 {
     _context = context;
     _jwt     = jwt;
 }
Ejemplo n.º 5
0
 public PlayersController(GameGuideContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public MigrationController(GameGuideContext dbContext)
 {
     _db = dbContext;
 }