using System; using System.Collections.Generic; using System.Linq; using System.Text; using NHibernate; namespace GeneralApi.Core.Infrastructure { public interface IUnitOfWork : IDisposable { ISession CurrentSession { get; } void Begin(); void RollBack(); void Commit(); } }