2019-02-23 23:47:50 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.DynamicQuery.Core
|
2018-10-21 21:27:50 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IQueryConvertInterceptor : IQueryInterceptor
|
|
|
|
|
{
|
|
|
|
|
object InterceptResultTo(object entity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface IQueryConvertInterceptor<T> : IQueryInterceptor
|
|
|
|
|
{
|
|
|
|
|
object InterceptResultTo(T entity);
|
|
|
|
|
}
|
2019-03-22 16:38:13 -04:00
|
|
|
|
|
|
|
|
|
public interface IQueryConvertInterceptor<T, T2> : IQueryInterceptor
|
|
|
|
|
{
|
|
|
|
|
T2 InterceptResultTo(T entity);
|
|
|
|
|
}
|
2018-10-21 21:27:50 -04:00
|
|
|
|
}
|