9.3.2 Adding the Checkout Process; Listing 9-10 The Checkout Action Method in the CartController.cs File

This commit is contained in:
Jason Zhu 2021-09-22 11:40:11 +10:00
parent 5e83bfa72f
commit 5eb2302b52

View File

@ -56,5 +56,10 @@ namespace SportsStore.WebUI.Controllers
{
return PartialView(cart);
}
public ViewResult Checkout()
{
return View(new ShippingDetails());
}
}
}