root/src/FmwkPoiesis.ObjectSearch/IObjectSearchProvider.cs

34
7
{
7
{
8
	public interface IObjectSearchProvider
8
	public interface IObjectSearchProvider
9
	{
9
	{
10
		string Name { get; }
10
		string BuildCommandEqual<T>(Equal<T> comparator, bool isLast) where T : IComparable;
11
		string BuildCommandEqual<T>(Equal<T> comparator, bool isLast) where T : IComparable;
12
		string BuildCommandRange<T>(Range<T> comparator, bool isLast) where T : IComparable;
13
		
11
	}
14
	}
12
}
15
}