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

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

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

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

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

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

            if (WbsElementObligationItemBudgets.Any())
            {
                dependentObjects.Add(typeof(WbsElementObligationItemBudget).Name);
            }

            if (WbsElementPnBudgets.Any())
            {
                dependentObjects.Add(typeof(WbsElementPnBudget).Name);
            }

            if (AgreementCostAuthorities.Any())
            {
                dependentObjects.Add(typeof(AgreementCostAuthority).Name);
            }

            if (CostAuthorityObligationRequests.Any())
            {
                dependentObjects.Add(typeof(CostAuthorityObligationRequest).Name);
            }

            if (CostAuthorityProjects.Any())
            {
                dependentObjects.Add(typeof(CostAuthorityProject).Name);
            }

            if (ReclamationStagingCostAuthorityAgreements.Any())
            {
                dependentObjects.Add(typeof(ReclamationStagingCostAuthorityAgreement).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Example #3
0
        /// <summary>
        /// Dependent type names of this entity
        /// </summary>
        public void DeleteChildren(DatabaseEntities dbContext)
        {
            foreach (var x in CostAuthorityObligationRequests.ToList())
            {
                x.DeleteFull(dbContext);
            }

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

            if (CostAuthorityObligationRequests.Any())
            {
                dependentObjects.Add(typeof(CostAuthorityObligationRequest).Name);
            }

            if (ObligationRequestSubmissionNotes.Any())
            {
                dependentObjects.Add(typeof(ObligationRequestSubmissionNote).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
Example #5
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(CostAuthorityObligationRequests.Any() || ObligationRequestSubmissionNotes.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(WbsElementObligationItemBudgets.Any() || WbsElementPnBudgets.Any() || AgreementCostAuthorities.Any() || CostAuthorityObligationRequests.Any() || CostAuthorityProjects.Any() || ReclamationStagingCostAuthorityAgreements.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(WbsElementObligationItemBudgets.Any() || WbsElementPnBudgets.Any() || CostAuthorityObligationRequests.Any());
 }