function GetBinList() { $sql = "SELECT * FROM fac_SupplyBin ORDER BY Location ASC;"; $binList = array(); foreach ($this->query($sql) as $row) { $binList[] = SupplyBin::RowToObject($row); } return $binList; }