public UserProcessor(IUserParamConverter paramConverter, IUserResultConverter resultConverter,
                      IUserDao dao, IOptions <SecretKeySettings> secretKeySettings, IHttpContextAccessor httpContextAccessor)
     : base(paramConverter, resultConverter, dao)
 {
     _httpContextAccessor = httpContextAccessor;
     _secretKeySettings   = secretKeySettings.Value;
 }
 public UserParamConverter(IUserStatusDao statusDao, IOptions <SecretKeySettings> secretKeySettings)
 {
     _statusDao         = statusDao;
     _secretKeySettings = secretKeySettings.Value;
 }