dotnet-cqrs/PoweredSoft.AdvanceQuery.Abstractions/IGroupableQuery.cs

11 lines
210 B
C#

using PoweredSoft.DynamicQuery.Core;
using System.Collections.Generic;
namespace PoweredSoft.AdvanceQuery.Abstractions
{
public interface IGroupableQuery
{
List<IGroup> GetGroups();
}
}