Exemplo n.º 1
0
 public ActionResult DeleteExtraValue(int oid, int pid, string name)
 {
     var m = new ExtraValueModel(oid, pid, "OrgMember", "Adhoc");
     m.Delete(name);
     return Content("deleted");
 }
Exemplo n.º 2
0
 public ActionResult DeleteAdhoc(string table, int id, string name)
 {
     var m = new ExtraValueModel(id, table, "Adhoc");
     m.Delete(name);
     return View("AdHoc", m);
 }
Exemplo n.º 3
0
 public ActionResult Delete(string table, int id, string name)
 {
     var m = new ExtraValueModel(id, table, "Standard");
     m.Delete(name);
     return View("Standard", m);
 }