| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Product/Price/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Product/Price/Cost.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Product\Price;
use Magento\Catalog\Api\Data\CostInterface;
/**
* Product Cost DTO.
*/
class Cost extends \Magento\Framework\Model\AbstractExtensibleModel implements CostInterface
{
/**
* {@inheritdoc}
*/
public function setCost($cost)
{
return $this->setData(self::COST, $cost);
}
/**
* {@inheritdoc}
*/
public function getCost()
{
return $this->getData(self::COST);
}
/**
* {@inheritdoc}
*/
public function setStoreId($storeId)
{
return $this->setData(self::STORE_ID, $storeId);
}
/**
* {@inheritdoc}
*/
public function getStoreId()
{
return $this->getData(self::STORE_ID);
}
/**
* {@inheritdoc}
*/
public function setSku($sku)
{
return $this->setData(self::SKU, $sku);
}
/**
* {@inheritdoc}
*/
public function getSku()
{
return $this->getData(self::SKU);
}
/**
* {@inheritdoc}
*/
public function getExtensionAttributes()
{
return $this->_getExtensionAttributes();
}
/**
* {@inheritdoc}
*/
public function setExtensionAttributes(\Magento\Catalog\Api\Data\CostExtensionInterface $extensionAttributes)
{
return $this->_setExtensionAttributes($extensionAttributes);
}
}