Example #1
0
        public async Task <IActionResult> DeleteOneByIdAsync(
            [FromRoute] int id
            )
        {
            var item = await _publicationService.DeleteOneByIdAsync(id);

            return(Ok(item));
        }