11 lines
210 B
C#
11 lines
210 B
C#
|
using PoweredSoft.DynamicQuery.Core;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace PoweredSoft.AdvanceQuery.Abstractions
|
|||
|
{
|
|||
|
public interface IGroupableQuery
|
|||
|
{
|
|||
|
List<IGroup> GetGroups();
|
|||
|
}
|
|||
|
}
|