|
<?php
|
|
|
|
namespace IpSupply\CartToQuote\Model\ResourceModel;
|
|
|
|
class CartDetail extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
|
|
{
|
|
|
|
protected function _construct()
|
|
{
|
|
// Table name + primary key column
|
|
$this->_init('ip_supply_cart_to_quote_detail', 'id');
|
|
}
|
|
|
|
}
|