Use these to pass reusable pieces of data/UI to partial views.
public IActionResult Index() { var list = _service.GetItems(); return View(list); }
In View:
@await Html.PartialAsync("_ItemListPartial", Model)