public AccountBl( IAccountRepository accountRepository, INotificationBl notificationBl, RoleManager <IdentityRole> roleManager, UserManager <User> userManager) { _notificationBl = notificationBl; _roleManager = roleManager; _accountRepository = accountRepository; _userManager = userManager; }
public AccountController( IJwtTokenBl tokenBl, IUserBl userBl, IAccountBl accountBl, INotificationBl notificationBl, IMapper mapper ) { _tokenBl = tokenBl; _userBl = userBl; _accountBl = accountBl; _notificationBl = notificationBl; _mapper = mapper; }