Example #1
0
 public UnitsController(QMContext context)
 {
     _context = context;
 }
Example #2
0
 public SoldiersController(QMContext context)
 {
     _context = context;
 }
Example #3
0
 public AdminController(QMContext context, RoleManager <IdentityRole> rm)
 {
     _context = context;
     _rm      = rm;
 }
Example #4
0
 public HighController(QMContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }
Example #5
0
 public AchievementsController(QMContext context)
 {
     _context = context;
 }
Example #6
0
 public CommanderController(QMContext context, UserManager <IdentityUser> userManager)
 {
     _context     = context;
     _userManager = userManager;
 }