public static ITypeQuery AreNotAbstract(this ITypeQuery typeQuery) => typeQuery.Satisfied(NotAbstractTypeQueryCriteria.Instance);
public static ITypeQuery HasAnyAttribute(this ITypeQuery typeQuery, params Type[] attrTypes) => typeQuery.Satisfied(new HasAttributeTypeQueryCriteria(attrTypes));
public static ITypeQuery AreNotGenericTypeDefinition(this ITypeQuery typeQuery) => typeQuery.Satisfied(NotGenericTypeDefinition.Instance);
public static ITypeQuery HasAttribute <T>(this ITypeQuery typeQuery) => typeQuery.Satisfied(new HasAttributeTypeQueryCriteria(typeof(T)));
public static ITypeQuery InheritFromInterface(this ITypeQuery typeQuery, Type type) => typeQuery.Satisfied(new InheritFromInterfaceTypeQueryCriteria(type));