Exemplo n.º 1
0
        public void Cancel(int id)
        {
            var comment = _commentRepo.GetComment(id);

            comment.Cancel();
            _commentRepo.Save();
        }