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