Exemplo n.º 1
0
        /// <summary>
        /// Returns the feat ids of the feats belonging to a parent feat
        /// </summary>
        /// <param name="featId">FeatId of the parent feat</param>
        /// <returns>A Guid List of the feats belonging to the parent feat</returns>
        public List <Guid> GetSubfeats(Guid featId)
        {
            List <Guid> subFeats = new List <Guid>();

            subFeats = FeatModel.GetIdsFromParentFeatId(featId);
            return(subFeats);
        }