narsil/Tanshu.Accounts.Repository/BusinessLayer/InventoryBI.cs
unknown 964d0a78bf Added Basecode to Product
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
2011-12-05 15:11:02 +05:30

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)
{ }
}
}