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 IMetricsManager
|
|
|
|
{
|
|
|
|
public IEnumerable<ProductListingInfo> RetrieveTopListings(int max = 10);
|
|
|
|
|
|
|
|
public IEnumerable<string> RetrieveCommonKeywords(int max = 50);
|
|
|
|
|
|
|
|
public void RegisterSearchQuery(string query);
|
|
|
|
|
2021-08-17 07:59:01 +00:00
|
|
|
public void RegisterProductListing(ProductListing productListing, string shopName);
|
2021-08-05 06:22:19 +00:00
|
|
|
}
|
|
|
|
}
|