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