Zahlungsparser
This commit is contained in:
@@ -13,6 +13,7 @@ use App\Repositories\EventRepository;
|
||||
use App\Repositories\InvoiceRepository;
|
||||
use App\Repositories\PageTextRepository;
|
||||
use App\Repositories\ParticipantRefundRepository;
|
||||
use App\Repositories\PaymentMethodRepository;
|
||||
use App\Repositories\UserRepository;
|
||||
|
||||
abstract class CommonController {
|
||||
@@ -27,6 +28,7 @@ abstract class CommonController {
|
||||
protected EventParticipantRepository $eventParticipants;
|
||||
protected ParticipantRefundRepository $participantRefunds;
|
||||
protected EstimatesRepository $estimates;
|
||||
protected PaymentMethodRepository $paymentMethods;
|
||||
protected AdminUserRepository $adminUsers;
|
||||
protected AdminTenantRepository $adminTenants;
|
||||
|
||||
@@ -40,6 +42,7 @@ abstract class CommonController {
|
||||
$this->eventParticipants = new EventParticipantRepository();
|
||||
$this->participantRefunds = new ParticipantRefundRepository();
|
||||
$this->estimates = new EstimatesRepository();
|
||||
$this->paymentMethods = new PaymentMethodRepository();
|
||||
$this->adminUsers = new AdminUserRepository();
|
||||
$this->adminTenants = new AdminTenantRepository();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user