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

23 lines
877 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);
Nullable<Guid> GetPendingVoucherID(string tableID);
List<InventoryBO> SaleInventory(Dictionary<BillItemKey, SalesBillItemBO>.ValueCollection list, Guid? voucherID);
void GetComplexBillInformation(Guid voucherID, Guid complexProductID, ref decimal rate, ref decimal quantity, ref string name);
void DeclareBillsPaid(Guid userID, List<Guid> billList, bool creditCard);
void ToggleImportant(Guid voucherID);
}
}