Exemplo n.º 1
0
 public ActionResult UpVoteComment(int commentId, int upDown)
 {
     _appRepository.CommentUpvote(commentId, upDown);
     _appRepository.SaveAll();
     return(Ok());
 }