using System.Linq; using Microsoft.AspNetCore.Identity; using MyHN.Domain; namespace MyHN.Application { public interface IContext { IQueryable Links { get; } IQueryable Comments { get; } IQueryable Users { get; } } }