20 lines
310 B
C#
20 lines
310 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.PointOfSale
|
|||
|
{
|
|||
|
public enum SaleFormState
|
|||
|
{
|
|||
|
Waiting = 0,
|
|||
|
Billing = 1
|
|||
|
}
|
|||
|
public enum FormMode
|
|||
|
{
|
|||
|
Normal = 0,
|
|||
|
Edit = 1,
|
|||
|
AddNew = 2
|
|||
|
}
|
|||
|
}
|