예제 #1
0
 public async Task <string> Create([FromBody] OrderBasketDto order, CancellationToken cancellationToken = default)
 {
     return(await _orderFacade.CreateOrderAsync(order, cancellationToken).ConfigureAwait(false));
 }