Remove unused method

This commit is contained in:
Kurt Riddlesperger 2020-04-18 22:41:44 -05:00
parent 495659c3f9
commit e997815ee7

View File

@ -51,12 +51,6 @@ class StockService extends BaseService
return $this->getDatabaseService()->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
}
public function GetCurrentProductPrices()
{
$sql = 'SELECT * FROM products_current_price';
return $this->getDatabaseService()->ExecuteDbQuery($sql)->fetchAll(\PDO::FETCH_OBJ);
}
public function GetMissingProducts()
{
$sql = 'SELECT * FROM stock_missing_products_including_opened';