Exemple #1
0
 public IResult <CommentResponse> Comment(string mediaId, string text)
 {
     if (String.IsNullOrEmpty(text) || String.IsNullOrEmpty(mediaId))
     {
         throw new ArgumentException("MediaId and text must be specified");
     }
     return(_actionService.Comment(mediaId, text));
 }