internal string GetPropEncrypted(string name)
        {
            StoreSetting s      = GetSetting(name);
            string       result = string.Empty;

            result = s.SettingValue;
            MerchantTribe.Web.Cryptography.TripleDesEncryption crypto = new MerchantTribe.Web.Cryptography.TripleDesEncryption();
            if (result != string.Empty)
            {
                result = crypto.Decode(result);
            }
            crypto = null;
            return(result);
        }
 internal string GetPropEncrypted(string name)
 {
     StoreSetting s = GetSetting(name);
     string result = string.Empty;
     result = s.SettingValue;
     MerchantTribe.Web.Cryptography.TripleDesEncryption crypto = new MerchantTribe.Web.Cryptography.TripleDesEncryption();
     if (result != string.Empty)
     {
         result = crypto.Decode(result);
     }
     crypto = null;
     return result;
 }