hn-dotnet/Application/IHNContext.cs
2020-12-11 12:01:59 +01:00

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; }
}
}