Ejemplo n.º 1
0
        public void UpdateSystemSetting(string key, object value)
        {
            _systemsettingRepository.Execute("update SystemSettings set Value = @Value where setting_key = @SettingKey", new { Value = value.ToString(), SettingKey = key });

            Cache.Remove(CoreCacheKeys.SystemSettingKeys.SystemSettingByKey(key));
        }