Exemplo n.º 1
0
 public Task <IEnumerable <WhilistBasketDto> > Handle(UpdateWhilistBasketById request, CancellationToken cancellationToken)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 2
0
      public async Task <IActionResult> UpdateById([FromBody] UpdateWhilistBasketById command)
      {
          var result = await mediator.Send(command);

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