narsil/Tanshu.Accounts.Contracts/DAOFactory/InventoryDAO.cs
2010-03-02 23:26:21 +05:30

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);
}
}