Exemplo n.º 1
0
        public Miscellaneous GetToolVersion()
        {
            TOOL_VERSION        = new Miscellaneous();
            TOOL_VERSION.Detail = DbDetailVersion;
            _Crud_Misc          = new MiscellaneousCrud();
            TOOL_VERSION        = _Crud_Deal.Retrieve <Miscellaneous>(TOOL_VERSION);

            return(TOOL_VERSION);
        }
Exemplo n.º 2
0
 private RateCardManagement()
 {
     _Crud_Rate_Card = new RateCardRevisedCrud();
     _Crud_Misc      = new MiscellaneousCrud();
     _Crud_TSSOffer  = new TSSOfferPriceCrud();
     LoadAllRateCards();
     Initialize_Miscellaneous();
     Initialize_TSSOfferPrice();
     Get_Annual_Cost_TSS_OSS_Pricing_H8J01A4_102();
 }
Exemplo n.º 3
0
        private void LoadTransitionDeploymentVariables()
        {
            TOOLS_SME            = new Miscellaneous();
            TOOLS_SME.Detail     = DbDetailToolsSME;
            TECH_SME             = new Miscellaneous();
            TECH_SME.Detail      = DbDetailTechSME;
            TRANS_MANAGER        = new Miscellaneous();
            TRANS_MANAGER.Detail = DbDetailTransitionManager;

            _Crud_Misc = new MiscellaneousCrud();

            TOOLS_SME     = _Crud_Deal.Retrieve <Miscellaneous>(TOOLS_SME);
            TECH_SME      = _Crud_Deal.Retrieve <Miscellaneous>(TECH_SME);
            TRANS_MANAGER = _Crud_Deal.Retrieve <Miscellaneous>(TRANS_MANAGER);
        }
Exemplo n.º 4
0
        public void LoadPricingVariables()
        {
            TARGET_MARGIN        = new Miscellaneous();
            TARGET_MARGIN.Detail = DbDetailTargetMargin;

            SLA_PRICE_ADJUSTMENT        = new Miscellaneous();
            SLA_PRICE_ADJUSTMENT.Detail = DbDetailSLAPriceAdjust;

            REGION_AOH = new Miscellaneous();
            Miscellaneous AOH_EMEA = new Miscellaneous();

            AOH_EMEA.Detail = DbDetailEMEA_AOH;
            Miscellaneous AOH_AMS = new Miscellaneous();

            AOH_AMS.Detail = DbDetailAMS_AOH;
            Miscellaneous AOH_LAC = new Miscellaneous();

            AOH_LAC.Detail = DbDetailLAC_AOH;
            Miscellaneous AOH_APJ = new Miscellaneous();

            AOH_APJ.Detail = DbDetailAPJ_AOH;

            _Crud_Misc = new MiscellaneousCrud();

            SLA_PRICE_ADJUSTMENT = _Crud_Deal.Retrieve <Miscellaneous>(SLA_PRICE_ADJUSTMENT);
            TARGET_MARGIN        = _Crud_Deal.Retrieve <Miscellaneous>(TARGET_MARGIN);

            AOH_EMEA = _Crud_Deal.Retrieve <Miscellaneous>(AOH_EMEA);
            AOH_AMS  = _Crud_Deal.Retrieve <Miscellaneous>(AOH_AMS);
            AOH_LAC  = _Crud_Deal.Retrieve <Miscellaneous>(AOH_LAC);
            AOH_APJ  = _Crud_Deal.Retrieve <Miscellaneous>(AOH_APJ);

            List_AOH.Add(AOH_EMEA);
            List_AOH.Add(AOH_AMS);
            List_AOH.Add(AOH_LAC);
            List_AOH.Add(AOH_APJ);
        }