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