Ejemplo n.º 1
0
        /// <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());
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Active Dependent type names of this object
        /// </summary>
        public List <string> DependentObjectNames()
        {
            var dependentObjects = new List <string>();

            if (ObligationNumbersWhereYouAreTheReclamationAgreement.Any())
            {
                dependentObjects.Add(typeof(ObligationNumber).Name);
            }

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

            if (AgreementPacificNorthActivitiesWhereYouAreTheReclamationAgreement.Any())
            {
                dependentObjects.Add(typeof(AgreementPacificNorthActivity).Name);
            }

            if (ObligationRequests.Any())
            {
                dependentObjects.Add(typeof(ObligationRequest).Name);
            }

            if (ReclamationStagingCostAuthorityAgreements.Any())
            {
                dependentObjects.Add(typeof(ReclamationStagingCostAuthorityAgreement).Name);
            }
            return(dependentObjects.Distinct().ToList());
        }
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(WbsElementObligationItemBudgets.Any() || WbsElementPnBudgets.Any() || AgreementCostAuthorities.Any() || CostAuthorityObligationRequests.Any() || CostAuthorityProjects.Any() || ReclamationStagingCostAuthorityAgreements.Any());
 }
Ejemplo n.º 4
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(ObligationNumbersWhereYouAreTheReclamationAgreement.Any() || AgreementCostAuthorities.Any() || AgreementPacificNorthActivitiesWhereYouAreTheReclamationAgreement.Any() || ObligationRequests.Any() || ReclamationStagingCostAuthorityAgreements.Any());
 }