erp-platform/api/modules/Erp.Reports/Erp.Reports.Domain/ErpReportsDomainModule.cs

17 lines
369 B
C#
Raw Normal View History

2026-01-06 11:33:39 +00:00
using Volo.Abp.Domain;
using Volo.Abp.Modularity;
namespace Erp.Reports;
[DependsOn(
typeof(AbpDddDomainModule),
typeof(ErpReportsDomainSharedModule)
)]
public class ErpReportsDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
// Domain services configuration can be added here
}
}