public IActionResult Detay(int id) { var hasta = _hastaService.GetirRaporlarIleUserById(id); HastaListAllViewModel model = new HastaListAllViewModel(); model.Id = hasta.Id; model.Raporlar = hasta.Raporlar; model.AppUser = hasta.AppUser; model.Aciliyet = hasta.Aciliyet; return(View(model)); }