using System.Collections.Generic; using System.Threading.Tasks; using WingsAPI.Communication; using WingsAPI.Communication.Bazaar; namespace WingsEmu.Game.Bazaar; public interface IBazaarManager { Task GetOwnerName(long characterId); Task GetBazaarItemById(long bazaarItemId); Task> GetListedItemsByCharacterId(long characterId); Task<(IReadOnlyCollection, RpcResponseType)> SearchBazaarItems(BazaarSearchContext bazaarSearchContext); }