public Handler( UserManager <Usuario> userManager, SignInManager <Usuario> signInManager, IJWT jWT) { _jWT = jWT; _signInManager = signInManager; _userManager = userManager; }
public Handler(IJWT jWT, UserManager <Usuario> userManager, PruebaBdContext pruebaBdContext, RoleManager <IdentityRole> roleManager ) { _jWT = jWT; _userManager = userManager; _pruebaBdContext = pruebaBdContext; _roleManager = roleManager; }
public AuthenticationBll(IUnitOfWork unitOfWork, IJWT jwt, IHash hash) { _unitOfWork = unitOfWork; _jwt = jwt; _hash = hash; }
public UsersController(IUserService userService, IJWT jwt) { _userService = userService; _jwt = jwt; }