public ActionResult DeleteConfirmed(int id) { NobetAltGrup nobetAltGrup = _nobetAltGrupService.GetById(id); _nobetAltGrupService.Delete(id); return(RedirectToAction("Index")); }
// GET: EczaneNobet/NobetAltGrup/Details/5 public ActionResult Details(int id) { if (id < 1) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } NobetAltGrup nobetAltGrup = _nobetAltGrupService.GetById(id); if (nobetAltGrup == null) { return(HttpNotFound()); } return(View(nobetAltGrup)); }
public ActionResult Edit([Bind(Include = "Id,Adi,NobetGrupGorevTipId,BaslamaTarihi,BitisTarihi")] NobetAltGrup nobetAltGrup) { if (ModelState.IsValid) { _nobetAltGrupService.Update(nobetAltGrup); return(RedirectToAction("Index")); } var nobetUstGrup = _nobetUstGrupSessionService.GetSession("nobetUstGrup"); var nobetGrupGorevTipler = _nobetGrupGorevTipService.GetDetaylar(nobetUstGrup.Id).Select(s => s.Id).ToList(); ViewBag.NobetGrupGorevTipId = new SelectList(_nobetGrupGorevTipService.GetDetaylarByIdList(nobetGrupGorevTipler).Select(s => new MyDrop { Id = s.Id, Value = $"{s.NobetGrupAdi}, {s.NobetGorevTipAdi}" }), "Id", "Value", nobetAltGrup.NobetGrupGorevTipId); return(View(nobetAltGrup)); }
// GET: EczaneNobet/NobetAltGrup/Edit/5 public ActionResult Edit(int id) { if (id < 1) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } NobetAltGrup nobetAltGrup = _nobetAltGrupService.GetById(id); if (nobetAltGrup == null) { return(HttpNotFound()); } var nobetUstGrup = _nobetUstGrupSessionService.GetSession("nobetUstGrup"); var nobetGrupGorevTipler = _nobetGrupGorevTipService.GetDetaylar(nobetUstGrup.Id).Select(s => s.Id).ToList(); ViewBag.NobetGrupGorevTipId = new SelectList(_nobetGrupGorevTipService.GetDetaylarByIdList(nobetGrupGorevTipler).Select(s => new MyDrop { Id = s.Id, Value = $"{s.NobetGrupAdi}, {s.NobetGorevTipAdi}" }), "Id", "Value", nobetAltGrup.NobetGrupGorevTipId); return(View(nobetAltGrup)); }
public void Update(NobetAltGrup nobetAltGrup) { _nobetAltGrupDal.Update(nobetAltGrup); }
public void Insert(NobetAltGrup nobetAltGrup) { _nobetAltGrupDal.Insert(nobetAltGrup); }