Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteCardByIdAsync([FromRoute] int id)
        {
            await _cardsService.DeleteCardByIdAsync(id);

            return(NoContent());
        }