dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IGroupingInterceptor.cs

8 lines
163 B
C#
Raw Normal View History

2018-10-17 22:14:21 -04:00
namespace PoweredSoft.DynamicQuery.Core
{
2018-10-23 22:38:28 -04:00
public interface IGroupInterceptor : IQueryInterceptor
2018-10-17 22:14:21 -04:00
{
IGroup InterceptGroup(IGroup group);
}
}