public ActionResult Create()
        {
            YemekModel model = new YemekModel();

            model.YemekKategoris = GetKategoriler();
            return(View(model));
        }
        public ActionResult DeleteConfirmed(int id)
        {
            YemekModel yemekmodel = db.Yemekler.Find(id);

            db.Yemekler.Remove(yemekmodel);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "yemekId,yemekAd")] YemekModel yemekmodel)
 {
     if (ModelState.IsValid)
     {
         db.Entry(yemekmodel).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(yemekmodel));
 }
        public ActionResult Create(YemekModel yemekmodel)
        //[Bind(Include="yemekId,yemekAd,YemekKategoriModel")]
        {
            //yemekmodel.YemekKategoris = GetKategoriler();
            if (ModelState.IsValid)
            {
                db.Yemekler.Add(yemekmodel);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(yemekmodel));
        }
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            YemekModel yemekmodel = db.Yemekler.Find(id);

            if (yemekmodel == null)
            {
                return(HttpNotFound());
            }
            return(View(yemekmodel));
        }
        public async Task <ActionResult> Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            YemekModel yemekmodel = await db.Yemekler.FindAsync(id);

            if (yemekmodel == null)
            {
                return(HttpNotFound());
            }
            return(View(yemekmodel));
        }