public ActionResult Delete(DeptListVM listvm) { throw new Exception("eee"); corp = GetLoginCorp(); foreach (var id in listvm.Input.SelectedValues) { DeptBD.Delete(id); } return(List(listvm)); }
public ActionResult DeleteInLine(int id) { DeptBD.Delete(id); return(RcJson(true)); }