laatzen/LaaProductionWeb/LaaProduction.Search/Interfaces/ISearchManager.cs
2024-07-17 13:13:41 +02:00

13 lines
305 B
C#

namespace LaaProduction.Search
{
using System;
using System.Collections.Generic;
public interface ISearchManager
{
IEnumerable<String> WildcardFields();
IEnumerable<IDictionary<String, Object>> SearchWildcard(String token, IEnumerable<String> selectedFields);
}
}