17 lines
264 B
PHP
17 lines
264 B
PHP
<?php
|
|
|
|
namespace App\Aggregate;
|
|
|
|
use App\Contract\OrderDto;
|
|
use App\Entity\Client;
|
|
use Symfony\Component\Uid\Uuid;
|
|
|
|
readonly class AcceptOrderCommand
|
|
{
|
|
public function __construct(
|
|
public OrderDto $order,
|
|
public Client $client,
|
|
) {
|
|
}
|
|
}
|