using Kurs.Notifications.Domain; using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Application; using Volo.Abp.AutoMapper; using Volo.Abp.Modularity; namespace Kurs.Notifications.Application; [DependsOn( typeof(NotificationDomainModule), typeof(NotificationApplicationContractsModule), typeof(AbpDddApplicationModule), typeof(AbpAutoMapperModule) )] public class NotificationApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.AddAutoMapperObjectMapper(); Configure(options => { options.AddMaps(validate: true); }); } }