Added primitive search mechanism in backend.
Began implementing search mechanism for frontend.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
@@ -6,9 +7,10 @@ using Props.Shop.Framework;
|
||||
|
||||
namespace Props.Services.Modules
|
||||
{
|
||||
public interface IShopManager
|
||||
public interface IShopManager : IDisposable
|
||||
{
|
||||
public IEnumerable<string> AvailableShops();
|
||||
public Task<IList<ProductListing>> Search(string query, SearchOutline searchOutline);
|
||||
public IEnumerable<string> GetAllShopNames();
|
||||
public IShop GetShop(string name);
|
||||
public IEnumerable<IShop> GetAllShops();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user