Files
juipnet/Infrastructure/Hncore.Infrastructure/EF/IRepositoryDbContext.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

9 lines
167 B
C#

using Microsoft.EntityFrameworkCore;
namespace Hncore.Infrastructure.EF
{
public interface IRepositoryDbContext
{
DbContext DbContext { get; }
}
}