namespace InABox.Core { public abstract class DigitalFormInstanceLookups : EntityLookup where TEntity : Entity where TLink : IEntityLink, new() where TForm : EntityForm, new() { public override Filter? DefineFilter() => null; public override SortOrder DefineSortOrder() => new SortOrder(x => x.Number, SortDirection.Ascending); } }