예제 #1
0
 public DbHandlerUsers(trobyContext cont, IConfiguration config)
 {
     _db     = cont;
     _config = config;
 }
예제 #2
0
 public UnlocksController(trobyContext context)
 {
     _context = context;
 }
예제 #3
0
 public GamesController(trobyContext context)
 {
     _context = context;
 }
예제 #4
0
 public OwnershipsController(trobyContext context)
 {
     _context = context;
 }
예제 #5
0
 public UsersController(trobyContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
     _db      = new DbHandlerUsers(context, config);
 }
예제 #6
0
 public AchievementsController(trobyContext context)
 {
     _context = context;
 }