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.
36 lines
1.2 KiB
36 lines
1.2 KiB
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Account;
|
|
using Volo.Abp.Application;
|
|
using Volo.Abp.AutoMapper;
|
|
using Volo.Abp.FeatureManagement;
|
|
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(DataExchangeDomainModule),
|
|
typeof(DataExchangeApplicationContractsModule),
|
|
typeof(AbpDddApplicationModule),
|
|
typeof(AbpAutoMapperModule),
|
|
typeof(AbpAccountApplicationModule),
|
|
typeof(AbpIdentityApplicationModule),
|
|
typeof(AbpPermissionManagementApplicationModule),
|
|
typeof(AbpTenantManagementApplicationModule),
|
|
typeof(AbpFeatureManagementApplicationModule),
|
|
typeof(AbpSettingManagementApplicationModule)
|
|
)]
|
|
public class DataExchangeApplicationModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.AddAutoMapperObjectMapper<DataExchangeApplicationModule>();
|
|
Configure<AbpAutoMapperOptions>(options =>
|
|
{
|
|
options.AddMaps<DataExchangeApplicationModule>(validate: false);
|
|
});
|
|
}
|
|
}
|
|
|