Your IP : 216.73.216.220


Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/Conditions/Model/ResourceModel/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/app/code/Amasty/Conditions/Model/ResourceModel/Quote.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Advanced Conditions for Magento 2
 */

namespace Amasty\Conditions\Model\ResourceModel;

use Amasty\Conditions\Api\Data\QuoteInterface;
use Magento\Framework\Model\ResourceModel\Db\AbstractDb;

class Quote extends AbstractDb
{
    public const TABLE_NAME = 'amasty_conditions_quote';

    protected function _construct()
    {
        $this->_init(self::TABLE_NAME, QuoteInterface::ITEM_ID);
    }
}