2024-01-23 11:52:49 +08:00
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2024-01-23 15:08:01 +08:00
|
|
|
|
using Volo.Abp.Auditing;
|
|
|
|
|
|
using Volo.Abp.Domain;
|
2024-01-23 11:52:49 +08:00
|
|
|
|
using Volo.Abp.Modularity;
|
2024-01-23 15:08:01 +08:00
|
|
|
|
using Yi.Framework.AuditLogging.Domain.Shared;
|
2024-01-23 11:52:49 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.AuditLogging.Domain
|
2024-01-22 13:58:21 +08:00
|
|
|
|
{
|
2024-01-23 15:08:01 +08:00
|
|
|
|
[DependsOn(typeof(YiFrameworkAuditLoggingDomainSharedModule),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typeof(AbpDddDomainModule),
|
|
|
|
|
|
typeof(AbpAuditingModule)
|
|
|
|
|
|
)]
|
2024-01-23 11:52:49 +08:00
|
|
|
|
public class YiFrameworkAuditLoggingDomainModule:AbpModule
|
2024-01-22 13:58:21 +08:00
|
|
|
|
{
|
2024-01-23 11:52:49 +08:00
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
|
|
|
|
{
|
2024-01-22 13:58:21 +08:00
|
|
|
|
|
2024-01-23 11:52:49 +08:00
|
|
|
|
}
|
2024-01-22 13:58:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|