<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Model\ResourceModel\Provider;
/**
* Interface provides entities id list that should be updated in grid
*/
interface NotSyncedDataProviderInterface
{
/**
* Returns id list of entities for adding or updating in grid.
*
* @param string $mainTableName source table name
* @param string $gridTableName grid table name
* @return array
*/
public function getIds($mainTableName, $gridTableName);
}
-
Ketan authoredf012f907