erp-platform/api/modules/Erp.SqlQueryManager/Erp.SqlQueryManager.Domain/SqlQueryManagerDomainModule.cs

18 lines
432 B
C#
Raw Normal View History

2025-12-05 08:56:53 +00:00
using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Domain;
using Volo.Abp.Modularity;
namespace Erp.SqlQueryManager;
[DependsOn(
typeof(AbpDddDomainModule),
typeof(SqlQueryManagerDomainSharedModule)
)]
public class SqlQueryManagerDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
// Domain services configuration can be added here
}
}