2023-10-02 11:25:45 -04:00
|
|
|
|
using System;
|
2021-02-03 01:26:37 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.CQRS.DynamicQuery.Abstractions
|
|
|
|
|
{
|
|
|
|
|
public interface IDynamicQueryInterceptorProvider<TSource, TDestination>
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<Type> GetInterceptorsTypes();
|
|
|
|
|
}
|
|
|
|
|
}
|