Browse Source

Merge pull request #8378 from abpframework/auto-merge/rel-4-3/207

Merge branch dev with rel-4.3
pull/8403/head
liangshiwei 5 years ago
committed by GitHub
parent
commit
e33f245fad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/en/Tutorials/Part-8.md

4
docs/en/Tutorials/Part-8.md

@ -267,7 +267,7 @@ public async Task<AuthorDto> CreateAsync(CreateAuthorDto input)
```` ````
* `CreateAsync` requires the `BookStorePermissions.Authors.Create` permission (in addition to the `BookStorePermissions.Authors.Default` declared for the `AuthorAppService` class). * `CreateAsync` requires the `BookStorePermissions.Authors.Create` permission (in addition to the `BookStorePermissions.Authors.Default` declared for the `AuthorAppService` class).
* Used the `AuthorManeger` (domain service) to create a new author. * Used the `AuthorManager` (domain service) to create a new author.
* Used the `IAuthorRepository.InsertAsync` to insert the new author to the database. * Used the `IAuthorRepository.InsertAsync` to insert the new author to the database.
* Used the `ObjectMapper` to return an `AuthorDto` representing the newly created author. * Used the `ObjectMapper` to return an `AuthorDto` representing the newly created author.
@ -566,4 +566,4 @@ Created some tests for the application service methods, which should be clear to
## The Next Part ## The Next Part
See the [next part](Part-9.md) of this tutorial. See the [next part](Part-9.md) of this tutorial.

Loading…
Cancel
Save