Exemplo n.º 1
0
        public JsonResponse <bool> UpdateComment([FromBody] SetCommentOnArticleRequest request)
        {
            try
            {
                _articleService.UpdateCommentOnArticle(request);

                return(new JsonResponse <bool>());
            }
            catch (Exception error)
            {
                return(new JsonResponse <bool>(error));
            }
        }
Exemplo n.º 2
0
 public void UpdateCommentToArticle(SetCommentOnArticleRequest comment)
 {
     throw new NotImplementedException();
 }