narsil/Tanshu.Accounts.Contracts/Data Contracts/ReprintBO.cs
unknown 831ec37cda Reprint and Printed bill editing logged.
Printed bill can no longer be changed, any changes voids the bill and prints a new one.
Added option to Split Bill.
Kot printed with right time.
Numerous bug fixes.
2011-08-23 12:40:05 +05:30

14 lines
333 B
C#

using System;
using Tanshu.Accounts.Entities.Auth;
namespace Tanshu.Accounts.Entities
{
public class Reprint
{
public virtual int ReprintID { get; set; }
public virtual User User { get; set; }
public virtual DateTime Date { get; set; }
public virtual Voucher Voucher { get; set; }
}
}