Ver código fonte

Essai UtilsManager

feature/export_comptable
Guillaume 4 anos atrás
pai
commit
0c0722e80b
1 arquivos alterados com 48 adições e 0 exclusões
  1. +48
    -0
      ShopBundle/Services/UtilsManager.php

+ 48
- 0
ShopBundle/Services/UtilsManager.php Ver arquivo

@@ -0,0 +1,48 @@
<?php

namespace Lc\ShopBundle\Services ;

use Lc\ShopBundle\Context\DeliveryUtilsInterface;
use Lc\ShopBundle\Context\OrderUtilsInterface;
use Lc\ShopBundle\Context\PriceUtilsInterface;

class UtilsManager
{
protected $utils ;
protected $orderUtils ;
protected $priceUtils ;
protected $deliveryUtils ;

public function __construct(
Utils $utils,
OrderUtilsInterface $orderUtils,
PriceUtilsInterface $priceUtils,
DeliveryUtilsInterface $deliveryUtils)
{
$this->utils = $utils ;
$this->orderUtils = $orderUtils ;
$this->priceUtils = $priceUtils ;
$this->deliveryUtils = $deliveryUtils ;
}

public function getUtils(): Utils
{
return $this->utils ;
}

public function getPriceUtils(): PriceUtilsInterface
{
return $this->priceUtils ;
}

public function getDeliveryUtils(): DeliveryUtilsInterface
{
return $this->deliveryUtils ;
}

public function getOrderUtils(): OrderUtilsInterface
{
return $this->orderUtils ;
}

}

Carregando…
Cancelar
Salvar