13 lines
300 B
C#
13 lines
300 B
C#
namespace PoweredSoft.DynamicQuery.Core
|
|
{
|
|
public interface IQueryConvertInterceptor : IQueryInterceptor
|
|
{
|
|
object InterceptResultTo(object entity);
|
|
}
|
|
|
|
public interface IQueryConvertInterceptor<T> : IQueryInterceptor
|
|
{
|
|
object InterceptResultTo(T entity);
|
|
}
|
|
}
|