示例#1
0
        public ActionResult Delete(DeptListVM listvm)
        {
            throw new Exception("eee");
            corp = GetLoginCorp();
            foreach (var id in listvm.Input.SelectedValues)
            {
                DeptBD.Delete(id);
            }

            return(List(listvm));
        }
示例#2
0
 public ActionResult DeleteInLine(int id)
 {
     DeptBD.Delete(id);
     return(RcJson(true));
 }