964d0a78bf
Added Voucher Type During Printing Added Discount Report Fixed Void bill table not getting cleared error Added PAX to table Removed Itital Setup button in MainForm as it was not doing anything
29 lines
654 B
C#
29 lines
654 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using Tanshu.Accounts.Contracts;
|
|
using Tanshu.Accounts.Entities;
|
|
using NHibernate;
|
|
|
|
namespace Tanshu.Accounts.Repository
|
|
{
|
|
public class InventoryBI : FluentGenericBase<Inventory>
|
|
{
|
|
public InventoryBI()
|
|
: base()
|
|
{ }
|
|
|
|
public InventoryBI(bool beginTransaction)
|
|
: base(beginTransaction)
|
|
{ }
|
|
|
|
public InventoryBI(ISession session)
|
|
: base(session)
|
|
{ }
|
|
|
|
public InventoryBI(ISession session, bool beginTransaction)
|
|
: base(session, beginTransaction)
|
|
{ }
|
|
}
|
|
}
|