laatzen/LaaProductionWeb/LaaProduction.Search/Interfaces/ISearchManager.cs
Stoyan Zlatev e32e553bfc clr types
2024-12-18 15:25:14 +01: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);
}
}