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