You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
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.TenantManagement;
|
|
using Volo.Abp.SettingManagement;
|
|
using Win_in.Sfs.Print.Application.Contacts;
|
|
|
|
namespace Win_in.Sfs.Print.HttpApi.Client
|
|
{
|
|
[DependsOn(
|
|
typeof(PrintApplicationContractsModule),
|
|
typeof(AbpAccountHttpApiClientModule),
|
|
typeof(AbpIdentityHttpApiClientModule),
|
|
typeof(AbpPermissionManagementHttpApiClientModule),
|
|
typeof(AbpTenantManagementHttpApiClientModule),
|
|
typeof(AbpFeatureManagementHttpApiClientModule),
|
|
typeof(AbpSettingManagementHttpApiClientModule)
|
|
)]
|
|
public class PrintHttpApiClientModule : AbpModule
|
|
{
|
|
public const string RemoteServiceName = "Default";
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.AddHttpClientProxies(
|
|
typeof(PrintApplicationContractsModule).Assembly,
|
|
RemoteServiceName
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|