cs11dotnet7/vscode/PracticalApps/Northwind.BlazorWasm/Client/Pages/CreateCustomer.razor

20 lines
428 B
Plaintext
Raw Normal View History

2022-03-13 17:17:01 +01:00
@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");
}
}