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