kenken999's picture
d
95eee3d
raw
history blame
255 Bytes
<?php
namespace App\Services;
class SeiyakuPriceService
{
public function getSeiyakuPrice(ShopFrontDetails $shopFrontDetails)
{
// implement logic to get seiyaku price
// for now, return a dummy value
return 1000;
}
}