12 lines
298 B
C#
12 lines
298 B
C#
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
using Props.Models.Search;
|
||
|
using Props.Shop.Framework;
|
||
|
|
||
|
namespace Props.Services.Modules
|
||
|
{
|
||
|
public interface ISearchManager
|
||
|
{
|
||
|
public IEnumerable<ProductListing> Search(string query, SearchOutline searchOutline);
|
||
|
}
|
||
|
}
|