class Product {
private $container;
private $data;
public function __constructor( ServiceContainer $container ) {
$this->container = $container;
$this->data = $this->container->get('someotherservice')->getDataById( $ID );
}
}
// controller code
$ID = 123;
$product = $this->get('service.product'); // как передать туда ID?