narsil/Tanshu.Accounts.Contracts/Data Contracts/SaleVoucherBO.cs
2011-12-05 14:53:02 +05:30

22 lines
685 B
C#

using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public class SaleVoucherBO : VoucherBO
{
public int Floor { get; set; }
public string BillID { get; set; }
public string TableID { get; set; }
public Guid WaiterID { get; set; }
public Guid CustomerID { get; set; }
public Guid? AdvanceID { get; set; }
public PaidStatus PaidStatus { get; set; }
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; }
}
}