narsil/Tanshu.Accounts.Contracts/DAOFactory/SaleVoucherMixDAO.cs
2011-12-05 14:53:02 +05:30

22 lines
763 B
C#

using System;
using System.Collections.Generic;
using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.DAOFactory
{
public interface ISaleVoucherMixDAO : IDisposable
{
SalesBillItemBO GetDefaultSaleBillItem(Guid productID);
decimal GetProductDiscountLimit(Guid productID);
bool IsBillPrinted(Guid voucherID);
List<PendingBillsBO> GetPendingBills(PendingType list, int floor);
Nullable<Guid> GetPendingVoucherID(string tableID, int floor);
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
void DeclareBillsPaid(Guid userID, List<Guid> billList, PaidStatus paidStatus);
decimal Amount(Guid voucherID);
}
}