public UsersSecretsApplication(
     IUsersSecretsDomain services,
     ITokens tokens,
     ISettingsUserSecrests settings,
     ISocial social,
     IRedisCache redisCache,
     ICryptograhic crypto,
     IResult result,
     IErrorMessages errors,
     ISettingsTokens settingsTokens,
     ISettingsUserSecrests settingsSecrets,
     IUserInfo userInfo
     )
 {
     _services        = services;
     _tokens          = tokens;
     _settings        = settings;
     _social          = social;
     _redisCache      = redisCache;
     _crypto          = crypto;
     _result          = result;
     _errors          = errors;
     _settingsSecrets = settingsSecrets;
     _settingsTokens  = settingsTokens;
     _userInfo        = userInfo;
 }
 public UsersSecretsRepository(
     ICosmosDB contextCosmosDB,
     ISettingsUserSecrests settings,
     ITokens tokens,
     ICryptograhic crypto,
     IResult result,
     IErrorMessages errors
 )
 {
     _contextCosmosDB = contextCosmosDB;
     _settings = settings;
     _tokens = tokens;
     _crypto = crypto;
     _result = result;
     _errors = errors;
 }