erp-platform/api/modules/Erp.Reports/Erp.Reports.Domain/ErpReportsDomainModule.cs
2026-01-06 14:33:39 +03:00

16 lines
369 B
C#

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
}
}