Ejemplo n.º 1
0
        public async Task <IActionResult> Delete(Guid eventId, int amount)
        {
            await _seatService.CanceleAsync(UserId, eventId, amount);

            return(NoContent());
        }