예제 #1
0
        public void DeleteNewsComment(string strId)
        {
            string         restr          = strId.Remove(strId.LastIndexOf(",")).Replace(",", "','");
            NewsCommentDAO newsCommentDAO = new NewsCommentDAO();

            newsCommentDAO.DeleteNewsComment(restr);
        }
예제 #2
0
        public void DeleteNewsComment(int commentID)
        {
            NewsCommentDAO newsCommentDAO = new NewsCommentDAO();

            newsCommentDAO.DeleteNewsComment(commentID);
        }