1c81288895
refactor the name of the organisation
20 lines
461 B
C#
20 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|
|
|
public class DynamicQueryInterceptorProvider<TSource, TDestination> : IDynamicQueryInterceptorProvider<TSource, TDestination>
|
|
{
|
|
private readonly Type[] _types;
|
|
|
|
public DynamicQueryInterceptorProvider(params Type[] types)
|
|
{
|
|
_types = types;
|
|
}
|
|
|
|
public IEnumerable<Type> GetInterceptorsTypes()
|
|
{
|
|
return _types;
|
|
}
|
|
}
|