예제 #1
0
 public AccountController(
     UserManager <ApplicationUser> userManager,
     SignInManager <ApplicationUser> signInManager,
     RoleManager <IdentityRole> roleManager,
     IEmailSender emailSender,
     ILogger <AccountController> logger,
     IWaultIdentityService identityService)
 {
     _userManager     = userManager;
     _signInManager   = signInManager;
     _roleManager     = roleManager;
     _emailSender     = emailSender;
     _logger          = logger;
     _identityService = identityService;
 }
예제 #2
0
 public UserIndyClaimsController(ApplicationDbContext context, UserManager <ApplicationUser> userManager, IWaultIdentityService identityService)
 {
     _context         = context;
     _userManager     = userManager;
     _identityService = identityService;
 }
 public CredentialSchemasController(ApplicationDbContext context, IWaultIdentityService identityService, UserManager <ApplicationUser> userManager)
 {
     _context         = context;
     _identityService = identityService;
     _userManager     = userManager;
 }