Exemple #1
0
        public ActionResult Delete(delete_action model)
        {
            bgk_not bgk_not = Db.bgk_not.Find(model.Id);

            Db.bgk_not.Remove(bgk_not);
            Db.SaveChanges();
            return(Content("<script>$.BGK.SuccessModal('Not başarılı bir şekilde silindi.', function (){ window.location.href='" + Url.Action("index") + "'; }, 1500);</script>"));
        }
Exemple #2
0
        public ActionResult Edit(int num = 0)
        {
            bgk_not bgk_not = Db.bgk_not.Find(num);

            if (bgk_not == null)
            {
                return(HttpNotFound());
            }
            return(View(bgk_not));
        }
Exemple #3
0
 public ActionResult Edit(bgk_not bgk_not)
 {
     if (ModelState.IsValid)
     {
         Db.Entry(bgk_not).State = EntityState.Modified;
         Db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.UyeID = new SelectList(Db.bgk_uye, "Id", "AdSoyad", bgk_not.UyeID);
     return(View(bgk_not));
 }
Exemple #4
0
 public ActionResult Create(bgk_not bgk_not)
 {
     if (ModelState.IsValid)
     {
         bgk_not.UyeID = (int)Session["memberID"];
         bgk_not.Tarih = DateTime.Now;
         Db.bgk_not.Add(bgk_not);
         Db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(bgk_not));
 }
Exemple #5
0
        public ActionResult Delete(int num = 0)
        {
            bgk_not bgk_not = Db.bgk_not.Find(num);

            if (bgk_not == null)
            {
                return(Content("<script>$.BGK.ErrorModal('Bir sorun oluştu. Lütfen daha sonra tekrar deneyiniz.');</script>"));
            }
            return(PartialView("DeleteActions", new delete_action()
            {
                Id = num, Title = "Not Sil", Message = "Bu notu silmek istediğinizden emin misiniz?"
            }));
        }