コード例 #1
0
 public TaskController()
 {
     repository = new userRepo();
 }
コード例 #2
0
 public userController(ApplicationDbContext Context, userRepo userRepo, SignInManager <IdentityUser> signInManager)
 {
     _context           = Context;
     this.userRepo      = userRepo;
     this.signInManager = signInManager;
 }