Files
2026-07-21 15:03:40 +07:00

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;
}