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