public IActionResult KitapAra(string kitapAdi) { var model = new KitapAraModel { Kitap = _kitapService.GetByName(kitapAdi) }; return(View(model)); }