public IResult <string> DeleteReplyComment(string mediaId, string repliedId) { if (String.IsNullOrEmpty(mediaId) || String.IsNullOrEmpty(repliedId)) { throw new ArgumentException("MediaId and repliedId must be specified"); } return(_actionService.DeleteReplyComment(mediaId, repliedId)); }