using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Account; using Volo.Abp.FeatureManagement; using Volo.Abp.Http.Client; using Volo.Abp.Identity; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement; using Volo.Abp.SettingManagement; using Volo.Abp.TenantManagement; namespace Win_in.Sfs.Wms.DataExchange; [DependsOn( typeof(DataExchangeApplicationContractsModule), typeof(AbpAccountHttpApiClientModule), typeof(AbpIdentityHttpApiClientModule), typeof(AbpPermissionManagementHttpApiClientModule), typeof(AbpTenantManagementHttpApiClientModule), typeof(AbpFeatureManagementHttpApiClientModule), typeof(AbpSettingManagementHttpApiClientModule), typeof(AbpHttpClientModule) )] public class DataExchangeHttpApiClientModule : AbpModule { public const string RemoteServiceName = "DataExchange"; public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.AddHttpClientProxies( typeof(DataExchangeApplicationContractsModule).Assembly, RemoteServiceName ); } }