831ec37cda
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.
24 lines
562 B
C#
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)
|
|
{ }
|
|
}
|
|
}
|