37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.Extensions.DependencyInjection;
 | |
| using Volo.Abp.Account;
 | |
| using Volo.Abp.FeatureManagement;
 | |
| using Volo.Abp.Identity;
 | |
| using Volo.Abp.Modularity;
 | |
| using Volo.Abp.PermissionManagement;
 | |
| using Volo.Abp.SettingManagement;
 | |
| using Volo.Abp.TenantManagement;
 | |
| using Volo.Abp.VirtualFileSystem;
 | |
| 
 | |
| namespace KonSoft.Dispatch;
 | |
| 
 | |
| [DependsOn(
 | |
|     typeof(DispatchApplicationContractsModule),
 | |
|     typeof(AbpAccountHttpApiClientModule),
 | |
|     typeof(AbpIdentityHttpApiClientModule),
 | |
|     typeof(AbpPermissionManagementHttpApiClientModule),
 | |
|     typeof(AbpTenantManagementHttpApiClientModule),
 | |
|     typeof(AbpFeatureManagementHttpApiClientModule),
 | |
|     typeof(AbpSettingManagementHttpApiClientModule)
 | |
| )]
 | |
| public class DispatchHttpApiClientModule : AbpModule
 | |
| {
 | |
|     public const string RemoteServiceName = "Default";
 | |
| 
 | |
|     public override void ConfigureServices(ServiceConfigurationContext context)
 | |
|     {
 | |
|         context.Services.AddHttpClientProxies(
 | |
|             typeof(DispatchApplicationContractsModule).Assembly
 | |
|         );
 | |
| 
 | |
|         Configure<AbpVirtualFileSystemOptions>(options =>
 | |
|         {
 | |
|             options.FileSets.AddEmbedded<DispatchHttpApiClientModule>();
 | |
|         });
 | |
|     }
 | |
| } |