Пример #1
0
        public async Task <IActionResult> DeleteElementAsync([FromRoute] Guid id)
        {
            _logger.LogInformation($"(Element '{id}') Element deletion requested");

            await _elementRepository.DeleteAsync(id);

            return(NoContent());
        }