843d644154
Fixed error were unprinted bill was not removed from table when voided.
12 lines
290 B
C#
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;
|
|
|
|
}
|
|
} |