2021-08-05 06:22:19 +00:00
|
|
|
using System;
|
2021-07-22 21:12:27 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Props.Models.Search;
|
|
|
|
using Props.Shop.Framework;
|
|
|
|
|
|
|
|
namespace Props.Services.Modules
|
|
|
|
{
|
2021-08-12 04:54:52 +00:00
|
|
|
public interface IShopManager : IAsyncDisposable
|
2021-07-22 21:12:27 +00:00
|
|
|
{
|
2021-08-12 04:54:52 +00:00
|
|
|
public ValueTask<IEnumerable<string>> GetAllShopNames();
|
|
|
|
public ValueTask<IShop> GetShop(string name);
|
|
|
|
public ValueTask<IEnumerable<IShop>> GetAllShops();
|
2021-07-22 21:12:27 +00:00
|
|
|
}
|
|
|
|
}
|