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

16 lines
No EOL
446 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Collections.Generic;
using System.Threading.Tasks;
using WingsAPI.Data.Account;
namespace WingsAPI.Data.Warehouse;
public interface IAccountWarehouseItemDao
{
Task<int> SaveAsync(IReadOnlyList<AccountWarehouseItemDto> objs);
Task<int> DeleteAsync(IEnumerable<AccountWarehouseItemDto> objs);
Task<IEnumerable<AccountWarehouseItemDto>> GetByAccountIdAsync(long accountId);
}