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