Slide 84
Slide 84 text
class CustomersController extends AbstractActionController {
public function __construct(
AddressRepositoryInterface $addressRepository,
AgingHistoryRepositoryInterface $agingHistoryRepository,
AliasRepositoryInterface $aliasRepository,
SocialRepositoryInterface $socialRepository,
ContactRepositoryInterface $contactRepository,
CustomerRepositoryInterface $customerRepository,
StatusRepositoryInterface $statusRepository,
MaintSurvTicketRepositoryInterface $ticketRepository
) {
$this->addressRepository = $addressRepository;
$this->agingHistoryRepository = $agingHistoryRepository;
$this->aliasRepository = $aliasRepository;
$this->socialRepository = $socialRepository;
$this->contactRepository = $contactRepository;
$this->customerRepository = $customerRepository;
$this->statusRepository = $statusRepository;
$this->ticketRepository = $ticketRepository;
}
}