mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 08:10:51 +08:00
17 lines
492 B
C#
17 lines
492 B
C#
using Volo.Abp.AuditLogging;
|
|
using Volo.Abp.Modularity;
|
|
using Yi.Framework.SqlSugarCore;
|
|
|
|
namespace Yi.AuditLogging.SqlSugarCore
|
|
{
|
|
[DependsOn(typeof(AbpAuditLoggingDomainModule))]
|
|
[DependsOn(typeof(YiFrameworkSqlSugarCoreModule))]
|
|
public class YiAuditLoggingSqlSugarCoreModule:AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.AddYiDbContext<YiAuditLoggingDbContext>();
|
|
}
|
|
}
|
|
}
|