/// <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());
        }
Beispiel #2
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());
        }
Beispiel #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(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());
 }