/// <summary> /// Active Dependent type names of this object /// </summary> public List <string> DependentObjectNames() { var dependentObjects = new List <string>(); if (CustomPages.Any()) { dependentObjects.Add(typeof(CustomPage).Name); } if (DocumentLibraryDocuments.Any()) { dependentObjects.Add(typeof(DocumentLibraryDocument).Name); } if (DocumentLibraryDocumentCategories.Any()) { dependentObjects.Add(typeof(DocumentLibraryDocumentCategory).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(CustomPages.Any() || DocumentLibraryDocuments.Any() || DocumentLibraryDocumentCategories.Any()); }