Ejemplo n.º 1
0
        public async Task <IActionResult> DeleteById([FromBody] DeleteBasketById command)
        {
            var result = await mediator.Send(command);

            return(CreatedAtAction("Update", new { basketId = result.Select(x => x.id) }, result));
        }
Ejemplo n.º 2
0
 public Task <IEnumerable <BasketDto> > Handle(DeleteBasketById request, CancellationToken cancellationToken)
 {
     throw new System.NotImplementedException();
 }