using System; using System.Collections.Generic; using Tanshu.Accounts.Contracts; namespace Tanshu.Accounts.DAOFactory { public interface IInventoryDAO : IDisposable { bool Insert(InventoryBO inventory); bool Update(InventoryBO inventory); bool Delete(Guid voucherID); bool Delete(Guid voucherID, Guid productID); List GetInventories(Guid voucherID); } }