public ActionResult KanIhtiyaci() { var hastalar = _hastaService.GetAll(); HastaListViewModel model = new HastaListViewModel { Hastas = hastalar.OrderByDescending(x => x.Tarih).ToList() }; return(View(model)); }
public ActionResult Index() { var model = new HastaListViewModel { HastaKarti = _hastaService.GetAll() }; return(View(model)); }