コード例 #1
0
        public ActionResult Edit(BenhNhan model)
        {
            if (ModelState.IsValid)
            {
                var dao = new BenhNhanDao();
                //kiem tra nguoi dung ton tai
                //true neu ton tai , tra ve lai trang Create
                if (dao.GetByTenBN(model.TenBN) != null)
                {
                    SetAlert("ten thuoc ton tai moi nhap ten khac", "warning");
                    return(RedirectToAction("Create", "Thuoc"));
                }
                else
                {
                    var result = new BenhNhanDao().Update(model);
                    if (result)
                    {
                        SetAlert("tao moi thuoc thanh cong", "success");
                    }
                    else
                    {
                        SetAlert("Da co loi xay ra", "error");
                    }

                    return(RedirectToAction("Index"));
                }
            }
            return(View());
        }
コード例 #2
0
        public ActionResult Delete(string id)
        {
            var dao = new BenhNhanDao();

            dao.Delete(id);
            SetAlert("Xoa Thanh Cong", "success");
            return(RedirectToAction("Index"));
        }
コード例 #3
0
        // GET: Admin/BenhNhan
        public ActionResult Index(string searchString, int page = 1, int pageSize = 10)
        {
            var dao   = new BenhNhanDao();
            var model = dao.ListAllPaging(searchString, page, pageSize);

            SelectList NhomBNList = new SelectList(dao.GetListNhomBN(), "MaNhomBN", "TenNhom");

            ViewBag.NhomBN = NhomBNList;

            //tạo dữ liệu trả về View (phân trang theo từ khóa tiềm kiếm)
            ViewBag.SearchString = searchString;
            return(View(model));
        }
コード例 #4
0
        public ActionResult Edit(string id)
        {
            var acc = new BenhNhanDao().GetByMaThuoc(id);

            return(View(acc));
        }