server-master/srcs/WingsAPI.Data/Bazaar/IBazaarItemDAO.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
440 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Collections.Generic;
using System.Threading.Tasks;
using PhoenixLib.DAL;
using WingsAPI.Data.Bazaar;
namespace WingsEmu.DTOs.Bazaar;
public interface IBazaarItemDAO : IGenericAsyncLongRepository<BazaarItemDTO>
{
Task<IReadOnlyCollection<BazaarItemDTO>> GetAllNonDeletedBazaarItems();
Task<IReadOnlyList<BazaarItemDTO>> GetBazaarItemsByCharacterId(long characterId);
}