narsil/Tanshu.Accounts.PointOfSale/Controllers/BillDict.cs
Tanshu 843d644154 Added ST Number to bill.
Fixed error were unprinted bill was not removed from table when voided.
2012-12-01 15:19:33 +05:30

12 lines
290 B
C#

using Tanshu.Accounts.Contracts;
using Tanshu.Common;
namespace Tanshu.Accounts.PointOfSale
{
public class BillDict : OrderedDictionary<BillItemKey, BillItemValue>
{
public delegate void ItemChangedHandler();
public event ItemChangedHandler ItemChanged;
}
}