2026-08-21 19:27:59 +00:00
|
|
|
|
using Volo.Abp.Domain;
|
2026-02-24 20:44:16 +00:00
|
|
|
|
using Volo.Abp.Modularity;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.SqlQueryManager;
|
|
|
|
|
|
|
|
|
|
|
|
[DependsOn(
|
|
|
|
|
|
typeof(AbpDddDomainModule),
|
|
|
|
|
|
typeof(SqlQueryManagerDomainSharedModule)
|
|
|
|
|
|
)]
|
|
|
|
|
|
public class SqlQueryManagerDomainModule : AbpModule
|
|
|
|
|
|
{
|
|
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Domain services configuration can be added here
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|