Dumplie\Customer\Domain\Checkout::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( CartId $cartId, Address $billingAddress )
$cartId CartId
$billingAddress Address
    public function __construct(CartId $cartId, Address $billingAddress)
    {
        $this->cartId = $cartId;
        $this->billingAddress = $billingAddress;
        $this->shippingAddress = $billingAddress;
    }