//确认删除评论 void IAdminRepository.DeleteConfirmed(int id) { comment comment = db.comment.Find(id); db.comment.Remove(comment); db.SaveChanges(); }
//删除用户评论 void IAdminRepository.Delete(int?id) { comment comment = db.comment.Find(id); }
//评论详情 void IAdminRepository.CommentDetail(int?id) { comment comment = db.comment.Find(id); }