mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
20 lines
428 B
Plaintext
20 lines
428 B
Plaintext
@page "/createcustomer"
|
|
@inject INorthwindService service
|
|
@inject NavigationManager navigation
|
|
|
|
<h3>Create Customer</h3>
|
|
|
|
<CustomerDetail ButtonText="Create Customer"
|
|
Customer="@customer"
|
|
OnValidSubmit="@Create" />
|
|
|
|
@code {
|
|
private Customer customer = new();
|
|
|
|
private async Task Create()
|
|
{
|
|
await service.CreateCustomerAsync(customer);
|
|
navigation.NavigateTo("customers");
|
|
}
|
|
}
|