Ejemplo n.º 1
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (FundingSources.Any())
            {
                dependentObjects.Add(typeof(FundingSource).Name);
            }

            if (People.Any())
            {
                dependentObjects.Add(typeof(Person).Name);
            }

            if ((StormwaterJurisdiction != null))
            {
                dependentObjects.Add(typeof(StormwaterJurisdiction).Name);
            }

            if (TreatmentBMPsWhereYouAreTheOwnerOrganization.Any())
            {
                dependentObjects.Add(typeof(TreatmentBMP).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in FundingSources.ToList())
            {
                x.DeleteFull(dbContext);
            }

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

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

            foreach (var x in TreatmentBMPsWhereYouAreTheOwnerOrganization.ToList())
            {
                x.DeleteFull(dbContext);
            }
        }
Ejemplo n.º 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(FundingSources.Any() || People.Any() || (StormwaterJurisdiction != null) || TreatmentBMPsWhereYouAreTheOwnerOrganization.Any());
 }