Ejemplo n.º 1
0
 public IResult <string> Unfollow(string userId)
 {
     if (String.IsNullOrEmpty(userId))
     {
         throw new ArgumentException("UserId must be specified");
     }
     return(_actionService.Unfollow(userId));
 }