2021-08-05 01:22:19 -05:00
|
|
|
using System;
|
2021-07-22 16:12:27 -05: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-11 23:54:52 -05:00
|
|
|
public interface IShopManager : IAsyncDisposable
|
2021-07-22 16:12:27 -05:00
|
|
|
{
|
2021-08-11 23:54:52 -05:00
|
|
|
public ValueTask<IEnumerable<string>> GetAllShopNames();
|
|
|
|
public ValueTask<IShop> GetShop(string name);
|
|
|
|
public ValueTask<IEnumerable<IShop>> GetAllShops();
|
2021-07-22 16:12:27 -05:00
|
|
|
}
|
|
|
|
}
|