Exemplo n.º 1
0
 public AccountsController(IAccountRepository accountRepository, INotificationService notificationService, IAccountsSettingsService accountsSettingsService, IGetRedirectUrlService getRedirectUrlService, IUserProfileService userProfileService, IFedAuthLoginButtonRepository fedAuthLoginRepository)
 {
     _fedAuthLoginRepository  = fedAuthLoginRepository;
     _accountRepository       = accountRepository;
     _notificationService     = notificationService;
     _accountsSettingsService = accountsSettingsService;
     _getRedirectUrlService   = getRedirectUrlService;
     _userProfileService      = userProfileService;
 }