16 lines
369 B
C#
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
|
|
}
|
|
}
|