Esempio n. 1
0
        public async Task DeleteAsync(int id)
        {
            var step = await ValidateStepExistsAsync(id);

            await _stepRepository.RemoveAsync(step);

            _cacheManager.RemoveBulkWithExpression(CacheKeys.Route);
        }