public UserServiceValidationHelper( IAesCryptoHelper aesCryptoHelper, IClientContextScraper clientContextScraper) { this.aesCryptoHelper = aesCryptoHelper; this.clientContextScraper = clientContextScraper; }
public JwtHelper( IClientContextScraper clientContextScraper, IOptionsMonitor <OptionManager> optionsManager) { this.clientContextScraper = clientContextScraper; this.optionsManager = optionsManager; }
public UserPermissionService( ICacheService <List <PermissionView> > cacheService, IClientContextScraper clientContextScraper) { this.cacheService = cacheService; this.clientContextScraper = clientContextScraper; }
public UserSessionService( IRepository <UserSession> userSessionRepository, IClientContextScraper clientContextScraper, IAesCryptoHelper aesCryptoHelper) { this.userSessionRepository = userSessionRepository; this.clientContextScraper = clientContextScraper; this.aesCryptoHelper = aesCryptoHelper; }
public TaskService( IRepository <TaskData> taskRepository, IClientContextScraper clientContextScraper, IAesCryptoHelper aesCryptoHelper, IUserServiceValidationHelper userServiceValidationHelper, ITaskServiceValidationHelper taskServiceValidationHelper) { this.taskRepository = taskRepository; this.clientContextScraper = clientContextScraper; this.aesCryptoHelper = aesCryptoHelper; this.userServiceValidationHelper = userServiceValidationHelper; this.taskServiceValidationHelper = taskServiceValidationHelper; }
public UserLoginService( IRepository <UserData> userDataRepository, IUserSessionService userSessionService, IJwtHelper jwtHelper, IAesCryptoHelper aesCryptoHelper, IClientContextScraper clientContextScraper, IHashCryptoHelper hashCryptoHelper, IOptionsMonitor <OptionManager> optionManager, IMessageService messageService, IUserServiceValidationHelper userServiceValidationHelper) { this.userDataRepository = userDataRepository; this.userSessionService = userSessionService; this.jwtHelper = jwtHelper; this.aesCryptoHelper = aesCryptoHelper; this.clientContextScraper = clientContextScraper; this.hashCryptoHelper = hashCryptoHelper; this.optionManager = optionManager; this.messageService = messageService; this.userServiceValidationHelper = userServiceValidationHelper; }