AI.nRepo.NHibernate.SessionBuilder.CloseSession C# (CSharp) Method

CloseSession() public method

public CloseSession ( ) : void
return void
        public void CloseSession()
        {
            if (_session != null)
            {
                _session.Close();
                _session.Dispose();
                _session = null;
            }
        }