public ActionResult MarkaGuncelle(int id, string name, string detay) { /*var tablo =(from a in )*/ Marka marka = _markaService.GetByID(id); marka.MarkaAdi = name; marka.MarkaAciklama = detay; bool control = _markaService.Update(marka); if (control) { return(Json("ok", JsonRequestBehavior.AllowGet)); } return(View(_markaService.GetAll())); }