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

9 lines
167 B
C#
Raw Normal View History

2020-12-28 14:55:48 +08:00
using Microsoft.EntityFrameworkCore;
namespace Hncore.Infrastructure.EF
{
public interface IRepositoryDbContext
{
DbContext DbContext { get; }
}
2020-10-07 20:25:03 +08:00
}