Example #1
0
        public ActionResult patientRoomDelete(int id = 0)
        {
            tbl_PationRoomInformation bc1 = db.tbl_PationRoomInformation.FirstOrDefault(s => s.PRoomID == id);

            db.tbl_PationRoomInformation.Remove(bc1);
            db.SaveChanges();
            return(RedirectToAction("pationRoomInformationList"));
        }
Example #2
0
        public ActionResult pationRoomInformationList(string keyword, tbl_PationRoomInformation model)
        {
            var results   = (from item in db.tbl_PationRoomInformation where item.tbl_RoomCatagory.CategoryName.Contains(keyword) || item.tbl_RoomType.RoomTypeName.Contains(keyword) select item).ToList();
            var pageIndex = model.Page ?? 1;

            model.pationRoomInformationListResults = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(model));
        }
Example #3
0
        public ActionResult pationRoomInformationList(tbl_PationRoomInformation model)
        {
            var results = (from item in db.tbl_PationRoomInformation
                           select item).ToList().OrderBy(p => p.PRoomID);
            var pageIndex = model.Page ?? 1;

            model.pationRoomInformationListResults = results.ToPagedList(pageIndex, RecordsPerPage);
            return(View(model));
        }
Example #4
0
 public ActionResult addPatientRoomInformation(tbl_PationRoomInformation pationroomInfo)
 {
     if (ModelState.IsValid)
     {
         db.tbl_PationRoomInformation.Add(pationroomInfo);
         db.SaveChanges();
         return(RedirectToAction("pationRoomInformationList"));
     }
     ViewBag.CategorayID = new SelectList(db.tbl_RoomCatagory, "CategorayID", "CategoryName");
     ViewBag.RoomTypeID  = new SelectList(db.tbl_RoomType, "RoomTypeID", "RoomTypeName");
     return(View(pationroomInfo));
 }
Example #5
0
        public ActionResult patientRoomInfoUpdate(int id = 0)
        {
            pationRoomInfoId = id;
            tbl_PationRoomInformation bc = db.tbl_PationRoomInformation.FirstOrDefault(s => s.PRoomID == pationRoomInfoId);

            if (bc == null)
            {
                return(HttpNotFound());
            }
            ViewBag.GetProomNo  = bc.ProomNo;
            ViewBag.CategorayID = new SelectList(db.tbl_RoomCatagory, "CategorayID", "CategoryName");
            ViewBag.RoomTypeID  = new SelectList(db.tbl_RoomType, "RoomTypeID", "RoomTypeName");
            ViewBag.GetFloorNo  = bc.FloorNo;
            ViewBag.GetAmount   = bc.Amount;
            return(View(bc));
        }
Example #6
0
        public ActionResult patientRoomInfoUpdate(tbl_PationRoomInformation bc, int id = 0)
        {
            tbl_PationRoomInformation bc1 = db.tbl_PationRoomInformation.FirstOrDefault(s => s.PRoomID == pationRoomInfoId);

            bc1.ProomNo     = bc.ProomNo;
            bc1.CategorayID = bc.CategorayID;
            bc1.RoomTypeID  = bc.RoomTypeID;
            bc1.FloorNo     = bc.FloorNo;
            bc1.Amount      = bc.Amount;
            if (bc1 == null)
            {
                return(HttpNotFound());
            }
            db.SaveChanges();
            ViewBag.CategorayID = new SelectList(db.tbl_RoomCatagory, "CategorayID", "CategoryName");
            ViewBag.RoomTypeID  = new SelectList(db.tbl_RoomType, "RoomTypeID", "RoomTypeName");
            ViewBag.Message     = "Update Successully";
            return(View(bc1));
        }