sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Application/NotificationApplicationModule.cs

23 lines
625 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using Sozsoft.Notifications.Domain;
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Application;
2026-05-24 22:23:52 +00:00
using Volo.Abp.Mapperly;
2026-02-24 20:44:16 +00:00
using Volo.Abp.Modularity;
namespace Sozsoft.Notifications.Application;
[DependsOn(
typeof(NotificationDomainModule),
typeof(NotificationApplicationContractsModule),
typeof(AbpDddApplicationModule),
2026-05-24 22:23:52 +00:00
typeof(AbpMapperlyModule)
2026-02-24 20:44:16 +00:00
)]
public class NotificationApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
2026-05-24 22:23:52 +00:00
context.Services.AddMapperlyObjectMapper<NotificationApplicationModule>();
2026-02-24 20:44:16 +00:00
}
}