Beispiel #1
0
 public IResult <string> Follow(string userId)
 {
     if (String.IsNullOrEmpty(userId))
     {
         throw new ArgumentException("UserId must be specified");
     }
     return(_actionService.Follow(userId));
 }