private async Task <bool> LikedExistFromClient(string IpAddress, string UserAgent, string clientRefId, string postId, string username)
        {
            if (await _likeRepository.GetLikeWithIpAddressAndUserAgentForPost(IpAddress, UserAgent, clientRefId, postId, username) == null)
            {
                return(false);
            }

            return(true);
        }