public AnswersController(TheoryContext context)
 {
     _context = context;
 }
 public ApplicationUserController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, TheoryContext contex)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _context       = contex;
 }
示例#3
0
 public TheoryController(TheoryContext context)
 {
     this.context = context;
     int red = 10;
 }
示例#4
0
 public QuestionsController(TheoryContext context)
 {
     _context = context;
 }