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-05 06:22:19 +00:00
|
|
|
public interface IShopManager : IDisposable
|
2021-07-22 21:12:27 +00:00
|
|
|
{
|
2021-08-05 06:22:19 +00:00
|
|
|
public IEnumerable<string> GetAllShopNames();
|
|
|
|
public IShop GetShop(string name);
|
|
|
|
public IEnumerable<IShop> GetAllShops();
|
2021-07-22 21:12:27 +00:00
|
|
|
}
|
|
|
|
}
|