示例#1
0
        public ActionResult Delete(string table, string location, int id, string name)
        {
            var m = new ExtraValueModel(id, table, location);

            m.Delete(name);
            return(View("Standard", m));
        }
示例#2
0
        public ActionResult DeleteExtraValue(int oid, int pid, string name)
        {
            var m = new ExtraValueModel(oid, pid, "OrgMember", "Adhoc");

            m.Delete(name);
            return(Content("deleted"));
        }
示例#3
0
        public ActionResult DeleteAdhoc(string table, int id, string name)
        {
            var m = new ExtraValueModel(id, table, "Adhoc");

            m.Delete(name);
            return(View("AdHoc", m));
        }