Browse Source

Update Part-9.md

pull/15063/head
Engincan VESKE 4 years ago
committed by GitHub
parent
commit
04c5d0f5ae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      docs/en/Tutorials/Part-9.md

6
docs/en/Tutorials/Part-9.md

@ -1166,7 +1166,7 @@ namespace Acme.BookStore.Blazor.Pages
private async Task CreateAuthorAsync()
{
if (CreateValidationsRef.ValidateAll() != null)
if (await CreateValidationsRef.ValidateAll())
{
await AuthorAppService.CreateAsync(NewAuthor);
await GetAuthorsAsync();
@ -1176,7 +1176,7 @@ namespace Acme.BookStore.Blazor.Pages
private async Task UpdateAuthorAsync()
{
if (EditValidationsRef.ValidateAll() != null)
if (await EditValidationsRef.ValidateAll())
{
await AuthorAppService.UpdateAsync(EditingAuthorId, EditingAuthor);
await GetAuthorsAsync();
@ -1208,7 +1208,7 @@ Open the `BookStoreMenuContributor.cs` in the `Acme.BookStore.Blazor` project an
````csharp
if (await context.IsGrantedAsync(BookStorePermissions.Authors.Default))
{
context.Menu.AddItem(new ApplicationMenuItem(
bookStoreMenu.AddItem(new ApplicationMenuItem(
"BooksStore.Authors",
l["Menu:Authors"],
url: "/authors"

Loading…
Cancel
Save