18 lines
432 B
C#
18 lines
432 B
C#
|
|
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
|
||
|
|
}
|
||
|
|
}
|