Log In

Practical ASP.NET

  • We need you to build an online store
  • Prototype the frontend
  • Hook it up to the backend
    • Time to switch gears slightly
    • Create an endpoint for retrieving a list of Products
    • Core Concept - Making Network Requests from your React application
    • Update the Product List component to call our API
    • Core Concept - Serialisation
    • Add an endpoint for retrieving Product Details
    • Update the Product Details component to call our API
  • Making it real (add a database)
  • Time to implement the shopping cart
  • Viewing your cart and checking out
  • Checkout
  • Time to let our users log in

Hook it up to the backend

In this module...

Time to switch gears slightly
Create an endpoint for retrieving a list of Products
Core Concept - Making Network Requests from your React application
Update the Product List component to call our API
Core Concept - Serialisation
Add an endpoint for retrieving Product Details
Update the Product Details component to call our API