예제 #1
0
        //确认删除评论
        void IAdminRepository.DeleteConfirmed(int id)
        {
            comment comment = db.comment.Find(id);

            db.comment.Remove(comment);
            db.SaveChanges();
        }
예제 #2
0
 //删除用户评论
 void IAdminRepository.Delete(int?id)
 {
     comment comment = db.comment.Find(id);
 }
예제 #3
0
        //评论详情

        void IAdminRepository.CommentDetail(int?id)
        {
            comment comment = db.comment.Find(id);
        }