// Private methods
        private FeatureSelection CreateFeatureSelection_Recursive(Feature feature)
        {
            // Create the FeatureSelection
            FeatureSelection featureSelection = new FeatureSelection()
            {
                FeatureIdentifier = feature.Identifier,
                FeatureName = feature.Name
            };

            return featureSelection;
        }
Example #2
0
        // Static instance creator
        internal static Feature CreateDefault()
        {
            Feature newBLO = new Feature()
            {
                Name = "Test name"
            };

            return newBLO;
        }
Example #3
0
        // Private methods
        private FeatureSelection CreateFeatureSelection_Recursive(Feature feature)
        {
            // Variables
            FeatureSelection featureSelection = new FeatureSelection() {

            };

            return
        }