Exemple #1
0
        public ActionResult Guncelle(tbl_hobiler h)
        {
            var hobi = db.tbl_hobiler.Find(h.ID);

            hobi.HOBI = h.HOBI;
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Exemple #2
0
 public ActionResult YeniIlgiAlani(tbl_hobiler h)
 {
     db.tbl_hobiler.Add(h);
     db.SaveChanges();
     return(View());
 }