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.
26 lines
840 B
26 lines
840 B
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Application;
|
|
using Volo.Abp.AutoMapper;
|
|
using Volo.Abp.Modularity;
|
|
using Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes;
|
|
using Win_in.Sfs.Wms.DataExchange.Domain.Iac.Mes;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Iac.Mes;
|
|
|
|
[DependsOn(
|
|
typeof(IacMesDomainModule),
|
|
typeof(IacMesApplicationContractsModule),
|
|
typeof(AbpDddApplicationModule),
|
|
typeof(AbpAutoMapperModule)
|
|
)]
|
|
public class IacMesApplicationModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.AddAutoMapperObjectMapper<IacMesApplicationModule>();
|
|
Configure<AbpAutoMapperOptions>(options =>
|
|
{
|
|
options.AddMaps<IacMesApplicationModule>(validate: false);
|
|
});
|
|
}
|
|
}
|
|
|