コード例 #1
0
 public MultiFactorController(SignInManager <ApplicationUser> signInManager, UserManager <ApplicationUser> userManager, RoleManager <IdentityRole> roleManager, IAServices AServices, IConfiguration configuration)
 {
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.roleManager   = roleManager;
     this.AServices     = AServices;
     this.configuration = configuration;
 }
コード例 #2
0
 public LoginController(SignInManager <ApplicationUser> signInManager, UserManager <ApplicationUser> userManager, IAServices AServices)
 {
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.AServices     = AServices;
 }
コード例 #3
0
 public ForgotPasswordController(SignInManager <ApplicationUser> signInManager, UserManager <ApplicationUser> userManager, IAServices AServices)
 {
     this.signInManager = signInManager;
     this.userManager   = userManager;
     this.AServices     = AServices;
 }