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

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