<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Product\Price;
use Magento\Catalog\Api\Data\BasePriceInterface;
/**
* Product Base Price DTO.
*/
class BasePrice extends \Magento\Framework\Model\AbstractExtensibleModel implements BasePriceInterface
{
/**
* {@inheritdoc}
*/
public function setPrice($price)
{
return $this->setData(self::PRICE, $price);
}
/**
* {@inheritdoc}
*/
public function getPrice()
{
return $this->getData(self::PRICE);
}
/**
* {@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\BasePriceExtensionInterface $extensionAttributes)
{
return $this->_setExtensionAttributes($extensionAttributes);
}
}
|