8 lines
111 B
C#
8 lines
111 B
C#
|
using NHibernate;
|
||
|
|
||
|
namespace Tiger.Storage;
|
||
|
|
||
|
public interface INhSessionFactory
|
||
|
{
|
||
|
ISession OpenSession();
|
||
|
}
|