/// <summary> /// Get config ItemValue from CRMConfigSettings. /// </summary> public static int GetConfigInt32(CRMConfig.eKeyName keyName, int defaultValue = 0) { return(GetConfigInt32(keyName.ToString(), defaultValue)); }
/// <summary> /// Get config ItemValue from CRMConfigSettings. /// </summary> public static string GetConfigString(CRMConfig.eKeyName keyName, string defaultValue = "") { return(GetConfigString(keyName.ToString(), defaultValue)); }
/// <summary> /// Get config ItemValue from CRMConfigSettings. /// </summary> public static bool GetConfigBoolean(CRMConfig.eKeyName keyName, bool defaultValue = false) { return(GetConfigBoolean(keyName.ToString(), defaultValue)); }