using System; using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using Props.Models.Search; using Props.Shop.Framework; namespace Props.Services.Modules { public interface IShopManager : IAsyncDisposable { public ValueTask> GetAllShopNames(); public ValueTask GetShop(string name); public ValueTask> GetAllShops(); } }