9 lines
162 B
C#
9 lines
162 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Hncore.Infrastructure.EF
|
|
{
|
|
public interface IQueryDbContext
|
|
{
|
|
DbContext DbContext { get; }
|
|
}
|
|
} |