Files
juipnet/Infrastructure/Hncore.Infrastructure/EF/IRepositoryDbContext.cs
“wanyongkang” 40a40b6d36 忽略
2020-12-28 14:55:48 +08:00

9 lines
167 B
C#

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