12 lines
287 B
C#
12 lines
287 B
C#
namespace LaaProduction.Search
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public interface ISearchManager
|
|
{
|
|
IEnumerable<string> WildcardFields();
|
|
|
|
IEnumerable<IDictionary<string, object>> SearchWildcard(string token, IEnumerable<string> selectedFields);
|
|
}
|
|
}
|