/// <summary>
 /// ���캯��
 /// </summary>
 public PEmpPermissionsBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.empPermissionsDB = new PEmpPermissionsDB(this.connection);
 }
 /// <summary>
 /// ���캯��
 /// </summary>
 /// <param name="connection">��������</param>
 public PEmpPermissionsBB(SqlConnection connection)
 {
     this.connection = connection;
     this.empPermissionsDB = new PEmpPermissionsDB(connection);
 }
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;

            if (this.selfConn)
            {
                this.connection.Close();
                this.connection.Dispose();
                this.connection = null;
            }
            if (this.empPermissionsDB != null)
            {
                this.empPermissionsDB.Dispose();
                this.empPermissionsDB = null;
            }
        }