Exemplo n.º 1
0
        //确认删除评论
        void IAdminRepository.DeleteConfirmed(int id)
        {
            comment comment = db.comment.Find(id);

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

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