Пример #1
0
 public string DeleteAriticle(string currentPage, string index, string countPerPage, string ariticleId)
 {
     //int c = Int32.Parse(currentPage);
     //int i = Int32.Parse(index);
     //int cp = Int32.Parse(countPerPage);
     //int num = (c - 1) * cp + i;
     //auditlist.RemoveAt(num);
     //根据知识Id删除知识
     AriticleService ariticleservice = new AriticleService();
     ariticleservice.DropAriticle(ariticleId);
     return "success";
 }