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

32 lines
873 B
C#

using System;
using System.Runtime.Serialization;
namespace Tanshu.Accounts.Contracts
{
public enum PendingType
{
Today = 0,
Week = 1,
All = 2,
Alarms = 4
}
public class PendingBillsBO
{
public Guid voucherID { get; set; }
public string BillNo { get; set; }
public string Kot { get; set; }
public string TableID { get; set; }
public decimal Amount { get; set; }
public bool Important { get; set; }
public bool Alarm { get; set; }
public DateTime BookingTime { get; set; }
public DateTime LastEdited { get; set; }
public string Waiter { get; set; }
public string Cashier { get; set; }
public bool Printed { get; set; }
public DateTime? AlarmTime { get; set; }
public Guid? AdvanceID { get; set; }
}
}