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