Taylohtio/GeneralApi/GeneralApi.Core/Infrastructure/DataAccess/ISessionSource.cs

14 lines
246 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NHibernate;
namespace GeneralApi.Core.Infrastructure.DataAccess
{
public interface ISessionSource
{
ISession CreateSession();
}
}