narsil/Tanshu.Accounts.Repository/BusinessLayer/ReprintBI.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

24 lines
562 B
C#

using System.Collections.Generic;
using NHibernate;
using Tanshu.Accounts.Entities;
namespace Tanshu.Accounts.Repository
{
public class ReprintBI : FluentGenericBase<Reprint>
{
public ReprintBI()
: base()
{ }
public ReprintBI(bool beginTransaction)
: base(beginTransaction)
{ }
public ReprintBI(ISession session)
: base(session)
{ }
public ReprintBI(ISession session, bool beginTransaction)
: base(session, beginTransaction)
{ }
}
}