public async Task <ResponseModel <List <UserInfoCommentDTO> > > GetUserComments(string id)
        {
            var responseModel = new ResponseModel <List <UserInfoCommentDTO> >();

            if (Guid.TryParse(id, out Guid userId))
            {
                responseModel.Code = StateCode.Sucess;
                responseModel.Data = await _commentManger.GetUserComments(userId);
            }
            return(responseModel);
        }