using Application.Common.Repositories; namespace Application.Common.CQS.Queries; public interface IQueryContext : IEntityDbSet { IQueryable Set() where T : class; }