7.3.1 Adding a Controller; e.g. 7.7: Adding an Action Method

This commit is contained in:
Jason Zhu 2021-08-20 12:47:02 +10:00
parent f33d1cd675
commit 6217886a88

View File

@ -15,5 +15,10 @@ namespace SportsStore.WebUI.Controllers
{
repository = productRepository;
}
public ViewResult List()
{
return View(repository.Products);
}
}
}