コード例 #1
0
 public Task <IEnumerable <ProBasketDto> > Handle(UpdateProBasketById request, CancellationToken cancellationToken)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
        public async Task <IActionResult> UpdateById([FromBody] UpdateProBasketById command)
        {
            var result = await mediator.Send(command);

            return(CreatedAtAction("Update", new { probasketId = result.Select(x => x.id) }, result));
        }