2011-03-11 18:49:48 +00:00
|
|
|
|
using Tanshu.Accounts.Contracts;
|
2011-01-30 07:14:05 +00:00
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.Entities
|
|
|
|
|
{
|
2011-02-18 16:54:48 +00:00
|
|
|
|
public enum SettleOption
|
2011-01-30 07:14:05 +00:00
|
|
|
|
{
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("Unsettled", false, 1)]
|
2011-02-18 16:54:48 +00:00
|
|
|
|
Unsettled = 1,
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("Cash", true, 2)]
|
2011-02-18 16:54:48 +00:00
|
|
|
|
Cash = 2,
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("Credit Card", true, 2)]
|
2011-02-18 16:54:48 +00:00
|
|
|
|
CreditCard = 3,
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("No Charge", true, 3)]
|
2011-02-18 16:54:48 +00:00
|
|
|
|
NoCharge = 4,
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("Bill To Company", true, 4)]
|
2011-02-18 16:54:48 +00:00
|
|
|
|
BillToCompany = 5,
|
2011-03-11 18:49:48 +00:00
|
|
|
|
[Display("Tip", true, 2)]
|
|
|
|
|
Tip = 6,
|
|
|
|
|
[Display("Round Off", false, 1)]
|
|
|
|
|
RoundOff = 7,
|
|
|
|
|
[Display("Amount", false, 1)]
|
|
|
|
|
Amount = 8
|
2011-01-30 07:14:05 +00:00
|
|
|
|
}
|
2011-03-11 18:49:48 +00:00
|
|
|
|
}
|