laatzen/LaaProductionWeb/LaaProductionWeb.Services/Interfaces/ISearchService.cs
2023-06-12 13:48:12 +02:00

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