예제 #1
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (GrantAllocations.Any())
            {
                dependentObjects.Add(typeof(GrantAllocation).Name);
            }

            if (GrantModificationFileResources.Any())
            {
                dependentObjects.Add(typeof(GrantModificationFileResource).Name);
            }

            if (GrantModificationGrantModificationPurposes.Any())
            {
                dependentObjects.Add(typeof(GrantModificationGrantModificationPurpose).Name);
            }

            if (GrantModificationNoteInternals.Any())
            {
                dependentObjects.Add(typeof(GrantModificationNoteInternal).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
예제 #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(GrantAllocations.Any() || GrantModificationFileResources.Any() || GrantModificationGrantModificationPurposes.Any() || GrantModificationNoteInternals.Any());
 }