Ejemplo n.º 1
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (MatchmakerOrganizationTaxonomyLeafs.Any())
            {
                dependentObjects.Add(typeof(MatchmakerOrganizationTaxonomyLeaf).Name);
            }

            if (ProjectsWhereYouAreTheOverrideTaxonomyLeaf.Any())
            {
                dependentObjects.Add(typeof(Project).Name);
            }

            if (SecondaryProjectTaxonomyLeafs.Any())
            {
                dependentObjects.Add(typeof(SecondaryProjectTaxonomyLeaf).Name);
            }

            if (TaxonomyLeafPerformanceMeasures.Any())
            {
                dependentObjects.Add(typeof(TaxonomyLeafPerformanceMeasure).Name);
            }

            if (CostAuthorities.Any())
            {
                dependentObjects.Add(typeof(CostAuthority).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Does this object have any dependent objects? (If it does have dependent objects, these would need to be deleted before this object could be deleted.)
 /// </summary>
 /// <returns></returns>
 public bool HasDependentObjects()
 {
     return(MatchmakerOrganizationTaxonomyLeafs.Any() || ProjectsWhereYouAreTheOverrideTaxonomyLeaf.Any() || SecondaryProjectTaxonomyLeafs.Any() || TaxonomyLeafPerformanceMeasures.Any() || CostAuthorities.Any());
 }