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(); Configure(options => { options.AddMaps(validate: true); }); } }