using System.Linq.Expressions; namespace ApplicationHub.Domain.Contracts; public interface IRepository { IEnumerable Find(Expression>? where = null, int? limit = null, int? offset = null, List>, OrderDirection>>? order = null); }