public async Task <ActionResult <ParkModel[]> > GetAllParks() { var results = await _service.GetAllModelsAsync(); return(Ok(results)); }
public async Task <IActionResult> Index() { var results = await _service.GetAllModelsAsync(); return(View(results)); }