feat : refund
This commit is contained in:
30
app/Service/Amqp/Refund/RefundFactory.php
Normal file
30
app/Service/Amqp/Refund/RefundFactory.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Service\Amqp\Refund;
|
||||
|
||||
class RefundFactory
|
||||
{
|
||||
/**
|
||||
* @return GoodOrderAllRefundService
|
||||
*/
|
||||
public function newGoodOrderRefundAll(): GoodOrderAllRefundService
|
||||
{
|
||||
return new GoodOrderAllRefundService();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return GoodOrderPartRefundService
|
||||
*/
|
||||
public function newGoodOrderRefundPart(): GoodOrderPartRefundService
|
||||
{
|
||||
return new GoodOrderPartRefundService();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return BalanceOrderRefundService
|
||||
*/
|
||||
public function newBalanceOrderRefund(): BalanceOrderRefundService
|
||||
{
|
||||
return new BalanceOrderRefundService();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user