Beispiel #1
0
 public bool UnLikeComment(string userId, string commentId)
 {
     try
     {
         _likesRepository.UnLikeComment(userId, commentId);
         return(true);
     }
     catch (Exception e)
     {
         _log.Error(e);
         return(false);
     }
 }