Ejemplo n.º 1
0
        public void Delete(string culture, string key)
        {
            _localizationRepository
            .Remove(culture, key);
            _localizationRepository
            .Save();

            var cacheKey = _GetCacheKey(culture, key);

            _cache
            .Remove(cacheKey);
        }