Example #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());
        }
Example #2
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in MatchmakerOrganizationTaxonomyLeafs.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in ProjectsWhereYouAreTheOverrideTaxonomyLeaf.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in SecondaryProjectTaxonomyLeafs.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in TaxonomyLeafPerformanceMeasures.ToList())
            {
                x.DeleteFull(dbContext);
            }

            foreach (var x in CostAuthorities.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
Example #3
0
 /// <summary>
 /// Dependent type names of this entity
 /// </summary>
 public void DeleteChildren(DatabaseEntities dbContext)
 {
     foreach (var x in CostAuthorities.ToList())
     {
         x.DeleteFull(dbContext);
     }
 }
Example #4
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (CostAuthorities.Any())
            {
                dependentObjects.Add(typeof(CostAuthority).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Example #5
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());
 }
Example #6
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(CostAuthorities.Any());
 }