mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-09-01 02:44:03 +00:00
multiple invoices with one payment SDEV-421
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Modules\Unity\Processors;
|
||||
|
||||
use Config;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use App\Classes\Modules\Unity\Services\CreatesContract;
|
||||
|
||||
class CreateContractProcessor
|
||||
{
|
||||
private $createsContract;
|
||||
|
||||
public function __construct(CreatesContract $createsContract)
|
||||
{
|
||||
$this->createsContract = $createsContract;
|
||||
}
|
||||
|
||||
public function execute(){
|
||||
return $this->createsContract->execute();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user