public int CheckIfVoted(int comID, int userID) { int voted; CommentDAO dao = new CommentDAO(); voted = dao.CheckIfVoted(userID, comID); return(voted); }