public UserServiceValidationHelper(
     IAesCryptoHelper aesCryptoHelper,
     IClientContextScraper clientContextScraper)
 {
     this.aesCryptoHelper      = aesCryptoHelper;
     this.clientContextScraper = clientContextScraper;
 }
 public UserSessionService(
     IRepository <UserSession> userSessionRepository,
     IClientContextScraper clientContextScraper,
     IAesCryptoHelper aesCryptoHelper)
 {
     this.userSessionRepository = userSessionRepository;
     this.clientContextScraper  = clientContextScraper;
     this.aesCryptoHelper       = aesCryptoHelper;
 }
Example #3
0
 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;
 }
Example #4
0
 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;
 }