13 lines
264 B
C#
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; }
|
|
}
|
|
} |