Added primitive search mechanism in backend.
Began implementing search mechanism for frontend.
This commit is contained in:
12
Props/Services/Modules/ISearchManager.cs
Normal file
12
Props/Services/Modules/ISearchManager.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user