10 lines
181 B
C#
10 lines
181 B
C#
using Application.Common.Repositories;
|
|
|
|
namespace Application.Common.CQS.Queries;
|
|
|
|
public interface IQueryContext : IEntityDbSet
|
|
{
|
|
IQueryable<T> Set<T>() where T : class;
|
|
}
|
|
|