// 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 SaveAsync(IReadOnlyList objs); Task DeleteAsync(IEnumerable objs); Task> GetByAccountIdAsync(long accountId); }