예제 #1
0
        public async Task <IActionResult> UpdateById([FromBody] UpdateBasketById command)
        {
            var result = await mediator.Send(command);

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