Пример #1
0
        public ActionResult DisableForm(string F_Id)
        {
            T_Action t_Action = actionBLL.GetForm(F_Id);

            t_Action.F_Enable_Mark = 0;
            actionBLL.SubmitForm(t_Action);
            return(Success("操作成功"));
        }
Пример #2
0
 public ActionResult SubmitForm(T_Action t_Action)
 {
     actionBLL.SubmitForm(t_Action);
     return(Success("操作成功"));
 }