コード例 #1
0
ファイル: Asset.cs プロジェクト: windygu/AW-master
        /// <summary>
        /// Load all of the Child Assets for this asset
        /// </summary>
        /// <returns>Count of items added to the list</returns>
        public int PopulateChildAssets()
        {
            AssetDAO lwDataAccess = new AssetDAO();

            _childAssets = new AssetList(lwDataAccess.EnumerateChildAssets(AssetID), false);
            return(_childAssets.Count);
        }