narsil/Tanshu.Accounts.Contracts/Data Contracts/SaleVoucherBO.cs

22 lines
685 B
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class SaleVoucherBO : VoucherBO
{
2011-12-05 09:23:02 +00:00
public int Floor { get; set; }
2010-03-02 17:56:21 +00:00
public string BillID { get; set; }
public string TableID { get; set; }
public Guid WaiterID { get; set; }
public Guid CustomerID { get; set; }
2011-12-05 09:23:02 +00:00
public Guid? AdvanceID { get; set; }
public PaidStatus PaidStatus { get; set; }
2010-03-02 17:56:21 +00:00
public string VoidReason { get; set; }
public bool Printed { get; set; }
public DateTime? Alarm { get; set; }
public string KotID { get; set; }
public byte[] SaleTimestamp { get; set; }
}
}