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.
 
 
 
 
 
 

28 lines
851 B

using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Application;
using Volo.Abp.AutoMapper;
using Volo.Abp.Modularity;
using Win_in.Sfs.Label.Application.Contracts;
using Win_in.Sfs.Label.Domain;
using Win_in.Sfs.Shared.Application;
namespace Win_in.Sfs.Label.Application;
[DependsOn(
typeof(LabelDomainModule),
typeof(LabelApplicationContractsModule),
typeof(AbpDddApplicationModule),
typeof(SharedApplicationModule),
typeof(AbpAutoMapperModule)
)]
public class LabelApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddAutoMapperObjectMapper<LabelApplicationModule>();
Configure<AbpAutoMapperOptions>(options =>
{
options.AddMaps<LabelApplicationModule>(validate: true);
});
}
}