17 lines
431 B
C#
17 lines
431 B
C#
|
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<InventoryDisplayBO> GetInventories(Guid voucherID);
|
|||
|
}
|
|||
|
}
|