18 lines
503 B
C#
18 lines
503 B
C#
|
using System.Collections.Generic;
|
||
|
using System.Threading.Tasks;
|
||
|
using Props.Models.Search;
|
||
|
using Props.Shop.Framework;
|
||
|
|
||
|
namespace Props.Services.Modules
|
||
|
{
|
||
|
public interface IMetricsManager
|
||
|
{
|
||
|
public IEnumerable<ProductListingInfo> RetrieveTopListings(int max = 10);
|
||
|
|
||
|
public IEnumerable<string> RetrieveCommonKeywords(int max = 50);
|
||
|
|
||
|
public void RegisterSearchQuery(string query);
|
||
|
|
||
|
public void RegisterListing(ProductListing productListing, string shopName);
|
||
|
}
|
||
|
}
|