myhn/Application/IContext.cs
2021-01-08 16:26:19 +01:00

13 lines
264 B
C#

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