Skip to main content

The Customers App

Now let's take a look at the equivalent of the Customers API but in Web App form. This application is written in Blazor, but the technique and approach applies for other .NET technologies such as MVC and even WebForms.

The idea is the same. We can:

  • Create a customer
  • Retrieve all customers
  • Retrieve a single customer
  • Update a customer
  • Delete a customer

Creating a customer

Retrieving all customers

Retrieving a single customer

Updating a customer

Deleting a customer