コード例 #1
0
 public bool UnLikePost(string userId, string postId)
 {
     try
     {
         _likesRepository.UnLikePost(userId, postId);
         return(true);
     }
     catch (Exception e)
     {
         _log.Error(e);
         return(false);
     }
 }