Ejemplo n.º 1
0
        /// <summary>
        /// 获取信息的列表
        /// </summary>
        /// <returns></returns>
        public ActionResult Index()
        {
            List <TestingOrgModel> list  = new List <TestingOrgModel>();
            TestingOrgModel        model = new TestingOrgModel();

            list = model.GetAllTestingOrgs();
            return(View(list));
        }
Ejemplo n.º 2
0
        public ActionResult TestingOrgManage(int id = 0)
        {
            TestingOrgModel model = new TestingOrgModel();

            if (id == 0)
            {
                model.Id   = 0;
                model.Name = "";
                model.Url  = "";
                model.Tel  = "";
            }
            else
            {
                model = model.GetTestingOrgById(id);
            }
            return(View(model));
        }
Ejemplo n.º 3
0
        public ActionResult TestingOrgManage([Bind(Include = "Id,Name,Url,Tel")] TestingOrgModel model)
        {
            //创建删除日志
            LogModel logModel = new LogModel();

            logModel.Name = User.Identity.Name;
            logModel.Date = DateTime.Now;

            if (model.Id == 0)
            {
                model.AddTestingOrg(model);

                logModel.Content = "AddTestingOrg";
                try
                {
                    logModel.AddLog(logModel);
                }
                catch (Exception ex)
                {
                    ModelState.AddModelError("", "日志创建失败");
                }
                HttpContext.Response.Write("<script>alert('保存成功!')</script>");
                return(View("TestingOrgManage"));
            }
            else
            {
                model.UpdateTestingOrg(model);
                logModel.Content = "UpdateTestingOrg";
                try
                {
                    logModel.AddLog(logModel);
                }
                catch (Exception ex)
                {
                    ModelState.AddModelError("", "日志创建失败");
                }
                return(RedirectToAction("Index", "TestingOrg"));
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 删除检测机构
        /// </summary>
        /// <returns></returns>

        public ActionResult DeleteTestingOrg(int id)
        {
            TestingOrgModel model = new TestingOrgModel();

            model.DeleteTestingOrg(id);

            //创建删除日志
            LogModel logModel = new LogModel();

            logModel.Name    = User.Identity.Name;
            logModel.Date    = DateTime.Now;
            logModel.Content = "DeleteTestingOrg";
            try
            {
                logModel.AddLog(logModel);
            }
            catch (Exception ex)
            {
                ModelState.AddModelError("", "日志创建失败");
            }

            return(RedirectToAction("Index", "TestingOrg"));
        }