using Sozsoft.Notifications.Domain; using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Application; using Volo.Abp.Mapperly; using Volo.Abp.Modularity; namespace Sozsoft.Notifications.Application; [DependsOn( typeof(NotificationDomainModule), typeof(NotificationApplicationContractsModule), typeof(AbpDddApplicationModule), typeof(AbpMapperlyModule) )] public class NotificationApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.AddMapperlyObjectMapper(); } }