Exemple #1
0
        public string RetrieveValueMethod(WonkaBizSource poTargetSource, string psAttrName)
        {
            string sValue = "";

            if (psAttrName != "VaultYieldRate")
            {
                sValue = poTargetSource.GetAttrValue(psAttrName);
            }
            // NOTE: Only useful in case of demo
            else
            {
                sValue = "0.12";
            }

            return(sValue);
        }
 public string RetrieveValueMethod(WonkaBizSource poTargetSource, string psAttrName)
 {
     return(poTargetSource.GetAttrValue(psAttrName, CONST_ONLINE_TEST_CHAIN_URL));
 }