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

            if (GisFeatures.Any())
            {
                dependentObjects.Add(typeof(GisFeature).Name);
            }

            if (GisUploadAttemptGisMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisUploadAttemptGisMetadataAttribute).Name);
            }

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

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

            if (TreatmentsWhereYouAreTheCreateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Treatment).Name);
            }

            if (TreatmentsWhereYouAreTheUpdateGisUploadAttempt.Any())
            {
                dependentObjects.Add(typeof(Treatment).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Пример #2
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (GisFeatureMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisFeatureMetadataAttribute).Name);
            }

            if (GisUploadAttemptGisMetadataAttributes.Any())
            {
                dependentObjects.Add(typeof(GisUploadAttemptGisMetadataAttribute).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Пример #3
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(GisFeatureMetadataAttributes.Any() || GisUploadAttemptGisMetadataAttributes.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(GisFeatures.Any() || GisUploadAttemptGisMetadataAttributes.Any() || PeopleWhereYouAreTheCreateGisUploadAttempt.Any() || ProjectsWhereYouAreTheCreateGisUploadAttempt.Any() || ProjectsWhereYouAreTheLastUpdateGisUploadAttempt.Any() || ProjectPeopleWhereYouAreTheCreateGisUploadAttempt.Any() || TreatmentsWhereYouAreTheCreateGisUploadAttempt.Any() || TreatmentsWhereYouAreTheUpdateGisUploadAttempt.Any());
 }