hn-dotnet/Application/IHNContext.cs

15 lines
297 B
C#

using HN.Domain;
using Microsoft.EntityFrameworkCore;
namespace HN.Application
{
/// <summary>
/// Interface permettant l'accès aux DbSet pour toute la partie Query.
/// </summary>
public interface IHNContext
{
DbSet<Link> Links { get; }
DbSet<Comment> Comments { get; }
}
}