public async Task <bool> AddComments(string userId, Comment comment)
        {
            var response = await _sqlHelper.AddComments(userId, comment);

            return(response);
        }