public ActionResult UpVoteComment(int commentId, int upDown) { _appRepository.CommentUpvote(commentId, upDown); _appRepository.SaveAll(); return(Ok()); }