public KioskSecurityService(IUnitOfWork unitOfWork,
                             IEncryptionUserService encryptionUserService,
                             IUserProfileService userProfileService) : base(unitOfWork)
 {
     _repository            = unitOfWork.KioskSecurities;
     _encryptionUserService = encryptionUserService;
     _userProfileService    = userProfileService;
 }
Beispiel #2
0
        public OAuthsController(IProxyService proxyService, IEncryptionUserService encryptionUserService,
                                IUserProfileService userProfileService)
        {
            _proxyService = proxyService;

            _encryptionUserService = encryptionUserService;

            _userProfileService = userProfileService;

            _userProfileService.PrincipalUser = User;
        }