/// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in Projects.ToList())
            {
                x.DeleteFull(dbContext);
            }

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

            foreach (var x in ProjectTypeProjectCustomAttributeTypes.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

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

            if (ProjectTypePerformanceMeasures.Any())
            {
                dependentObjects.Add(typeof(ProjectTypePerformanceMeasure).Name);
            }

            if (ProjectTypeProjectCustomAttributeTypes.Any())
            {
                dependentObjects.Add(typeof(ProjectTypeProjectCustomAttributeType).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
 /// <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(Projects.Any() || ProjectTypePerformanceMeasures.Any() || ProjectTypeProjectCustomAttributeTypes.Any());
 }
 /// <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(ProjectCustomAttributes.Any() || ProjectCustomAttributeUpdates.Any() || ProjectTypeProjectCustomAttributeTypes.Any());
 }