Exemplo n.º 1
0
 public function __construct(LocalityRepository $localityRepository, LocalityService $localityService, User $user)
 {
     parent::__construct($user);
     $this->localityRepository = $localityRepository;
     $this->localityService = $localityService;
     $this->user = $user;
 }
Exemplo n.º 2
0
 public function __construct(MessageRepository $messageRepository, UserMessageRepository $umr, \Transaction $transaction, MessageRepository $mr, UserRepository $ur, User $user)
 {
     parent::__construct($user);
     $this->messageRepository = $messageRepository;
     $this->userMessageRepository = $umr;
     $this->transaction = $transaction;
     $this->messageRepository = $mr;
     $this->userRepository = $ur;
 }
Exemplo n.º 3
0
 public function __construct(ListingItemRepository $listingItemRepository, WorkedHoursRepository $workedHoursRepository, LocalityRepository $localityRepository, \Transaction $transaction, ItemService $itemService, User $user)
 {
     parent::__construct($user);
     $this->listingItemRepository = $listingItemRepository;
     $this->workedHoursRepository = $workedHoursRepository;
     $this->localityRepository = $localityRepository;
     $this->transaction = $transaction;
     $this->itemService = $itemService;
 }
Exemplo n.º 4
0
 public function __construct(ListingItemRepository $listingItemRepository, ListingRepository $listingRepository, \Transaction $transaction, ItemService $itemService, ItemFacade $itemFacade, User $user)
 {
     parent::__construct($user);
     $this->listingItemRepository = $listingItemRepository;
     $this->listingRepository = $listingRepository;
     $this->transaction = $transaction;
     $this->itemService = $itemService;
     $this->itemFacade = $itemFacade;
 }