Browse Source
Depends on `AbpVirtualFileSystemModule`.
pull/19136/head
maliming
2 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
5 additions and
3 deletions
-
docs/en/API/Static-CSharp-API-Clients.md
|
|
|
@ -65,8 +65,9 @@ Now, it's ready to configure the application for the static client proxy generat |
|
|
|
|
|
|
|
````csharp |
|
|
|
[DependsOn( |
|
|
|
typeof(AbpHttpClientModule) //used to create client proxies |
|
|
|
)] |
|
|
|
typeof(AbpHttpClientModule), //used to create client proxies |
|
|
|
typeof(AbpVirtualFileSystemModule) //virtual file system |
|
|
|
)] |
|
|
|
public class MyClientAppModule : AbpModule |
|
|
|
{ |
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context) |
|
|
|
@ -90,8 +91,9 @@ public class MyClientAppModule : AbpModule |
|
|
|
````csharp |
|
|
|
[DependsOn( |
|
|
|
typeof(AbpHttpClientModule), //used to create client proxies |
|
|
|
typeof(AbpVirtualFileSystemModule), //virtual file system |
|
|
|
typeof(BookStoreApplicationContractsModule) //contains the application service interfaces |
|
|
|
)] |
|
|
|
)] |
|
|
|
public class MyClientAppModule : AbpModule |
|
|
|
{ |
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context) |
|
|
|
|