using System; using System.Collections.Generic; namespace OpenHarbor.CQRS.DynamicQuery.Abstractions; public class DynamicQueryInterceptorProvider : IDynamicQueryInterceptorProvider { private readonly Type[] _types; public DynamicQueryInterceptorProvider(params Type[] types) { _types = types; } public IEnumerable GetInterceptorsTypes() { return _types; } }