Browse Source

Merge pull request #22969 from abpframework/maliming-patch-2

Remove unused services info from the blazorUI.
pull/22972/head
Enis Necipoglu 9 months ago
committed by GitHub
parent
commit
dfffcdfce4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/tutorials/book-store/part-09.md

2
docs/en/tutorials/book-store/part-09.md

@ -1038,8 +1038,6 @@ Create a new Razor Component Page, `/Pages/Authors.razor`, in the {{ if UI == "B
* This code is similar to the `Books.razor`, except it doesn't inherit from the `AbpCrudPageBase`, but uses its own implementation.
* Injects the `IAuthorAppService` to consume the server side HTTP APIs from the UI. We can directly inject application service interfaces and use just like regular method calls by the help of [Dynamic C# HTTP API Client Proxy System](../../framework/api-development/dynamic-csharp-clients.md), which performs REST API calls for us. See the `Authors` class below to see the usage.
* Injects the `IAuthorizationService` to check [permissions](../../framework/fundamentals/authorization.md).
* Injects the `IObjectMapper` for [object to object mapping](../../framework/infrastructure/object-to-object-mapping.md).
Create a new code behind file, `Authors.razor.cs`, under the `Pages` folder, with the following content:

Loading…
Cancel
Save