root/src/FmwkPoiesis.ObjectSearch/IComparator.cs

34
8
	public interface IComparator
8
	public interface IComparator
9
	{
9
	{
10
		string NameProperty { get; }
10
		string NameProperty { get; }
11
		string BuildCommandSearch(bool isLastElement);
11
		string BuildCommandSearch(IObjectSearchProvider provider, bool isLastElement);
12
		bool And { get; set; }
12
		bool And { get; set; }
13
	}
13
	}
14
14