laatzen/LaaProductionWeb/LaaProduction.Search/Interfaces/ISearchManager.cs
2023-06-19 12:17:03 +02:00

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);
}
}