public IActionResult IyilesenHastalar(int aktifSayfa = 1) { int toplamSayfa; var hastalar = _hastaService.GetirIyilestirilenHastalar(out toplamSayfa, aktifSayfa); ViewBag.ToplamSayfa = toplamSayfa; ViewBag.AktifSayfa = aktifSayfa; List <HastaListAllViewModel> models = new List <HastaListAllViewModel>(); foreach (var item in hastalar) { HastaListAllViewModel model = new HastaListAllViewModel(); model.Id = item.Id; model.AppUser = item.AppUser; model.Aciliyet = item.Aciliyet; model.Raporlar = item.Raporlar; model.Aciklama = item.Aciklama; model.AdSoyad = item.AdSoyad; model.KimlikNo = item.KimlikNo; model.Yas = item.Yas; model.TestTarihi = item.TestTarihi; models.Add(model); } return(View(models)); }