AI.nRepo.NHibernate.SessionBuilder.CloseSession C# (CSharp) 메소드

CloseSession() 공개 메소드

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