Files
_resources/it114105/itp4513/Assignment/19-20/models/ConsignmentStore.php
louiscklaw 04dbefcbaf update,
2025-02-01 01:58:47 +08:00

32 lines
493 B
PHP

<?php
class ConsignmentStore{
private $storeId;
private $storeName;
private $storeItemList;
function __construct($storeId, $storeName, $storeItemList){
$this->storeId = $storeId;
$this->storeName = $storeName;
$this->storeItemList = $storeItemList;
}
public function getStoreName(){
return $this->storeName;
}
public function getStoreItemList(){
return $this->storeItemList;
}
public function getStoreID(){
return $this->storeId;
}
}
?>