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