dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IAggregateInterceptor.cs
2018-10-21 16:37:59 -05:00

12 lines
251 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace PoweredSoft.DynamicQuery.Core
{
public interface IAggregateInterceptor : IQueryInterceptor
{
IAggregate InterceptAggregate(IAggregate aggregate);
}
}