14 lines
320 B
C#
14 lines
320 B
C#
namespace LaaProduction.Search.Data.Interfaces
|
|
{
|
|
using LaaProduction.Search.Models.Wildcard;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
internal interface IWildcardRepository
|
|
{
|
|
IEnumerable<string> Fields();
|
|
|
|
IEnumerable<WildcardResult> Find(string token, IEnumerable<string> fields);
|
|
}
|
|
}
|