Files
juipnet/Infrastructure/Hncore.Infrastructure/EF/IRepositoryDbContext.cs

9 lines
167 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Microsoft.EntityFrameworkCore;
namespace Hncore.Infrastructure.EF
{
public interface IRepositoryDbContext
{
DbContext DbContext { get; }
}
}