2020-12-20 18:03:20 +01:00
|
|
|
|
using System;
|
2020-12-12 14:18:31 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2020-12-20 18:03:20 +01:00
|
|
|
|
using Serwer.Infrastructure.DTO;
|
2020-12-12 14:18:31 +01:00
|
|
|
|
namespace Serwer.Infrastructure.Services
|
|
|
|
|
{
|
2020-12-20 18:03:20 +01:00
|
|
|
|
public interface ISearchService
|
2020-12-12 14:18:31 +01:00
|
|
|
|
{
|
2020-12-20 18:03:20 +01:00
|
|
|
|
Task<IList<SearchResultDTO>> Search(string query);
|
2020-12-12 14:18:31 +01:00
|
|
|
|
}
|
|
|
|
|
}
|