narsil/Tanshu.Accounts.Contracts/Data Contracts/VoucherType.cs
unknown 964d0a78bf Added Basecode to Product
Added Voucher Type During Printing
Added Discount Report
Fixed Void bill table not getting cleared error
Added PAX to table
Removed Itital Setup button in MainForm as it was not doing anything
2011-12-05 15:11:02 +05:30

16 lines
363 B
C#

using Tanshu.Accounts.Contracts;
namespace Tanshu.Accounts.Entities
{
public enum VoucherType
{
[Display("Regular Bill", true, 2)]
Regular = 1,
[Display("No Charge", true, 3)]
NoCharge = 2,
[Display("Take Away", true, 2)]
TakeAway = 3,
[Display("Staff Bill", true, 4)]
Staff = 4,
}
}