invoice-backend

This commit is contained in:
mhmj
2019-07-18 17:36:36 +08:00
parent 8c2f109a18
commit 6c55f95229
19 changed files with 719 additions and 3 deletions
@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers\FreightForwarder;
use App\Classes\Modules\ControllersLogic\FreightForwarder\DeleteServiceFeesLogic;
class DeleteServiceFeesController
{
public function delete(String $serviceId, DeleteServiceFeesLogic $logic){
return $logic->execute($serviceId);
}
}