예제 #1
0
        public void HideComment(int commentId)
        {
            Comment commentToHide = _ideationRepository.ReadComment(commentId);

            commentToHide.Hidden = true;
            _ideationRepository.UpdateComment(commentToHide);
        }