예제 #1
0
 public IResult <string> LikeComment(string commentId)
 {
     if (String.IsNullOrEmpty(commentId))
     {
         throw new ArgumentException("CommentId must be specified");
     }
     return(_actionService.LikeComment(commentId));
 }