コード例 #1
0
        public JsonResult Create(GuidUn model) {
            GuidUnBll guBll = new GuidUnBll();

            model.AgentID = (uint)AgentLoginUser.RoleID;
            model.EnterpriseID = AgentLoginUser.UserBasic.EnterpriseID;
            model.ContactPhone = "0";
            model.AddTime = DateTime.Now;
            model.Status = 1;
            return Json(guBll.DelCreateGuid(model), JsonRequestBehavior.AllowGet);
        }
コード例 #2
0
ファイル: GuidUnController.cs プロジェクト: xingdd/myjobs
        public JsonResult Create(GuidUn model)
        {
            GuidUnBll guBll = new GuidUnBll();

            model.AgentID      = 1;
            model.EnterpriseID = LoginUser.UserBasic.EnterpriseID;
            model.ContactPhone = "";
            model.AddTime      = DateTime.Now;
            model.Status       = 1;
            return(Json(guBll.DelCreateGuid(model), JsonRequestBehavior.AllowGet));
        }
コード例 #3
0
ファイル: GuidUnController.cs プロジェクト: xingdd/myjobs
        public JsonResult UpdateAfter(GuidUn model)
        {
            GuidUnBll guBll = new GuidUnBll();

            return(Json(guBll.DelCreateGuid(model)));
        }
コード例 #4
0
        public JsonResult UpdateAfter(GuidUn model)
        {
            GuidUnBll guBll = new GuidUnBll();

            return Json(guBll.DelCreateGuid(model));
        }