16 lines
No EOL
440 B
C#
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);
|
|
} |