11 lines
248 B
C#
11 lines
248 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PoweredSoft.CQRS.DynamicQuery.Abstractions
|
|
{
|
|
public interface IDynamicQueryInterceptorProvider<TSource, TDestination>
|
|
{
|
|
IEnumerable<Type> GetInterceptorsTypes();
|
|
}
|
|
}
|