14 lines
294 B
C#
14 lines
294 B
C#
namespace LaaProductionWeb.Services.Interfaces
|
|
{
|
|
using LaaProductionWeb.Services.Models;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
public interface ISearchService
|
|
{
|
|
IEnumerable<WildcardResult> Find(WildcardInputModel model);
|
|
|
|
IEnumerable<string> Options();
|
|
}
|
|
}
|