Пример #1
0
        public ActionResult patientInfoDelete(int id = 0)
        {
            tbl_PatientInfo bc1 = db.tbl_PatientInfo.FirstOrDefault(s => s.PatientID == id);

            db.tbl_PatientInfo.Remove(bc1);
            db.SaveChanges();
            return(RedirectToAction("patientInfoList"));
        }
Пример #2
0
        public ActionResult patientInfoList(string keyword, tbl_PatientInfo model)
        {
            var results   = (from item in db.tbl_PatientInfo where item.PatientName.Contains(keyword) || item.Gender.Contains(keyword) select item).ToList();
            var pageIndex = model.Page ?? 1;

            model.patientInfoListResult = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(model));
        }
Пример #3
0
        public ActionResult patientInfoList(tbl_PatientInfo model)
        {
            var results = (from item in db.tbl_PatientInfo
                           select item).ToList().OrderBy(p => p.PatientID);
            var pageIndex = model.Page ?? 1;

            model.patientInfoListResult = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(model));
        }
Пример #4
0
 public ActionResult addPatientInfo(tbl_PatientInfo patientinfo)
 {
     if (ModelState.IsValid)
     {
         db.tbl_PatientInfo.Add(patientinfo);
         db.SaveChanges();
         return(RedirectToAction("patientInfoList"));
     }
     ViewBag.ReferenceID = new SelectList(db.tbl_Referenceinfo, "ReferenceID", "ReferenceName");
     ViewBag.PRoomID     = new SelectList(db.tbl_PationRoomInformation, "PRoomID", "ProomNo");
     return(View(patientinfo));
 }
Пример #5
0
        public ActionResult patientInfoUpdate(tbl_PatientInfo bc, int id = 0)
        {
            tbl_PatientInfo bc1 = db.tbl_PatientInfo.FirstOrDefault(s => s.PatientID == patientInfoId);

            bc1.PatientName     = bc.PatientName;
            bc1.Gender          = bc.Gender;
            bc1.Disease         = bc.Disease;
            ViewBag.ReferenceID = new SelectList(db.tbl_Referenceinfo, "ReferenceID", "ReferenceName");
            bc1.Gardian         = bc.Gardian;
            ViewBag.PRoomID     = new SelectList(db.tbl_PationRoomInformation, "PRoomID", "ProomNo");
            db.SaveChanges();
            ViewBag.Message = "Update Successfully";
            return(View(bc1));
        }
Пример #6
0
        public ActionResult patientInfoUpdate(int id = 0)
        {
            patientInfoId = id;
            tbl_PatientInfo bc = db.tbl_PatientInfo.FirstOrDefault(s => s.PatientID == patientInfoId);

            if (bc == null)
            {
                return(HttpNotFound());
            }
            ViewBag.GetPatientName = bc.PatientName;
            ViewBag.GetGender      = bc.Gender;
            ViewBag.Disease        = bc.Disease;
            ViewBag.ReferenceID    = new SelectList(db.tbl_Referenceinfo, "ReferenceID", "ReferenceName");
            ViewBag.GetGardian     = bc.Gardian;
            ViewBag.PRoomID        = new SelectList(db.tbl_PationRoomInformation, "PRoomID", "ProomNo");
            return(View(bc));
        }