Poszukiwacz/Serwer/Serwer.Infrastructure/Services/ISearchService.cs

14 lines
317 B
C#
Raw Normal View History

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