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