public IActionResult Index(int kategori) { var model = new KitapListViewModel { Kitap = kategori > 0? _kitapService.GetByKategori(kategori):_kitapService.GetAll() }; return(View(model)); }
public IActionResult GetAll() { var result = _kitapService.GetAll(); if (result.Success) { return(Ok(result)); } return(BadRequest(result)); }
private void LoadKitaps() { dgwKitapIslemleri.DataSource = _kitapService.GetAll(); }
private void LoadKitaplar() { dgwKitaplar.DataSource = _kitapService.GetAll(); }
private void LoadData() { dgwKitapListesi.DataSource = kitapService.GetAll(); }
private void btnAllCategory_Click(object sender, EventArgs e) { dgwKitaps.DataSource = _kitapService.GetAll(); }