public async Task <IActionResult> PostAsync(CreateOrderCommand command)
        {
            var result = await SendAsync(command.Bind(c => c.Id, UserId), resourceId : command.Id, resource : "orders");

            return(result);
        }