public async Task <UserTokenResult> FindUserTokenByValueAsync(long userId, string value, string name)
        {
            var userToken = await _userTokenRepository.FindByValueAsync(userId, value, name);

            return(userToken);
        }