2021-08-05 06:22:19 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Props.Models.Search;
|
|
|
|
using Props.Shop.Framework;
|
|
|
|
|
|
|
|
namespace Props.Services.Modules
|
|
|
|
{
|
|
|
|
public interface ISearchManager
|
|
|
|
{
|
2021-08-07 22:20:46 +00:00
|
|
|
public IShopManager ShopManager { get; }
|
|
|
|
public Task<IEnumerable<ProductListing>> Search(string query, SearchOutline searchOutline);
|
2021-08-05 06:22:19 +00:00
|
|
|
}
|
|
|
|
}
|