2013-02-12 13:25:10 +00:00
|
|
|
|
using Tanshu.Accounts.Entities;
|
2011-12-05 09:41:02 +00:00
|
|
|
|
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)
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
}
|