public ActionResult Duzenle(YorumlarVM model)
        {
            var yorum = _yorumlarService.Get(x => x.ID == model.ID).Entity;

            yorum.Onay = model.Onay;
            _yorumlarService.Update(yorum);
            Helper.setTempData(this, "Message", true, "Bilgiler Güncellendi.");
            return(RedirectToAction("Index"));
        }
        public IActionResult Guncelle(GuncelleModel model)
        {
            if (!ModelState.IsValid)
            {
                return(View());
            }

            var guncellenecekKitap = _kitapService.GetById3(model.Id);
            var guncellenecekYorum = _yorumlarService.GetById2(model.Id);


            TempData.Add("message", "Kitap Başarı ile Güncellendi.!");


            guncellenecekKitap.KitapAdi = model.KitapAdi;


            guncellenecekKitap.Puan = model.Puan;

            guncellenecekKitap.Yazar = model.Yazar;

            guncellenecekKitap.Resim = model.Resim;

            guncellenecekKitap.YorumId = model.YorumId;
            guncellenecekKitap.YorumId = model.YorumId;

            guncellenecekKitap.KategoriAdi = model.Kategori;

            guncellenecekKitap.KategoriId = model.KategoriId;


            _kitapService.Update(guncellenecekKitap);
            _yorumlarService.Update(guncellenecekYorum);


            return(RedirectToAction("Guncelle", controllerName: "Admin"));
        }