public function __construct(NotificationRepository $notification)
 {
     parent::__construct();
     $this->entityName = 'notification.notifications';
     $this->repository = $notification;
 }
Пример #2
0
 public function __construct(PriorityRepository $priority)
 {
     parent::__construct();
     $this->entityName = 'support.priorities';
     $this->repository = $priority;
 }
Пример #3
0
 public function __construct(MemberRepository $member)
 {
     parent::__construct();
     $this->entityName = 'customers.members';
     $this->repository = $member;
 }
 public function __construct(JcmRepository $jcm)
 {
     parent::__construct();
     $this->entityName = 'jorocustommodule.jcms';
     $this->repository = $jcm;
 }
Пример #5
0
 public function __construct(EntryRepository $entry)
 {
     parent::__construct();
     $this->entityName = 'entry.entries';
     $this->repository = $entry;
 }
 public function __construct(EloquentModelsRepositoryInterface $eloquentModels)
 {
     parent::__construct();
     $this->entityName = 'elegant-' . ElegantModel::normalizeClassName($eloquentModels->model());
     $this->repository = $eloquentModels;
 }
Пример #7
0
 public function __construct(CompanyRepository $company)
 {
     parent::__construct();
     $this->entityName = 'customers.companies';
     $this->repository = $company;
 }
Пример #8
0
 public function __construct(ZoneRepository $zone)
 {
     parent::__construct();
     $this->entityName = 'localisation.zones';
     $this->repository = $zone;
 }
Пример #9
0
 public function __construct(TestimonialRepository $testimonial)
 {
     parent::__construct();
     $this->entityName = 'testimonials.testimonials';
     $this->repository = $testimonial;
 }
 public function __construct(DepartmentRepository $department)
 {
     parent::__construct();
     $this->entityName = 'staff.departments';
     $this->repository = $department;
 }
Пример #11
0
 public function __construct(SiteRepository $site)
 {
     parent::__construct();
     $this->entityName = 'site.sites';
     $this->repository = $site;
 }
Пример #12
0
 public function __construct(PostRepository $post)
 {
     parent::__construct();
     $this->entityName = 'posts';
     $this->repository = $post;
 }
 public function __construct(RecipeRepository $recipe)
 {
     parent::__construct();
     $this->entityName = 'recipe.recipes';
     $this->repository = $recipe;
 }
 public function __construct(MyModuleEntityRepository $mymoduleentity)
 {
     parent::__construct();
     $this->entityName = 'mymodule.mymoduleentities';
     $this->repository = $mymoduleentity;
 }
Пример #15
0
 public function __construct(GalleryRepository $gallery)
 {
     parent::__construct();
     $this->entityName = 'gallery.galleries';
     $this->repository = $gallery;
 }
Пример #16
0
 public function __construct(ArticleRepository $article)
 {
     parent::__construct();
     $this->entityName = 'knowledgebase.articles';
     $this->repository = $article;
 }
Пример #17
0
 public function __construct(CategoryRepository $category)
 {
     parent::__construct();
     $this->entityName = 'module.categories';
     $this->repository = $category;
 }
Пример #18
0
 public function __construct(ProfileRepository $profile)
 {
     parent::__construct();
     $this->entityName = 'profile.profiles';
     $this->repository = $profile;
 }
Пример #19
0
 public function __construct(TagRepository $tag)
 {
     parent::__construct();
     $this->entityName = 'tags';
     $this->repository = $tag;
 }
Пример #20
0
 public function __construct(CountryRepository $country)
 {
     parent::__construct();
     $this->entityName = 'localisation.countries';
     $this->repository = $country;
 }
Пример #21
0
 public function __construct(FeedRepository $feed)
 {
     parent::__construct();
     $this->entityName = 'feeds.feeds';
     $this->repository = $feed;
 }
Пример #22
0
 public function __construct(FaqRepository $faq)
 {
     parent::__construct();
     $this->entityName = 'faq.faqs';
     $this->repository = $faq;
 }
Пример #23
0
 public function __construct(MenuItemRepository $menuItem)
 {
     parent::__construct();
     $this->entityName = 'menusItems';
     $this->repository = $menuItem;
 }
Пример #24
0
 public function __construct(SettingRepository $setting)
 {
     parent::__construct();
     $this->entityName = 'setting.settings';
     $this->repository = $setting;
 }
 public function __construct(TranslationRepository $translation)
 {
     parent::__construct();
     $this->entityName = 'translation.translations';
     $this->repository = $translation;
 }
Пример #26
0
 public function __construct(NewsRepository $news)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $news;
 }
Пример #27
0
 public function __construct(BlockRepository $block)
 {
     parent::__construct();
     $this->entityName = 'block.blocks';
     $this->repository = $block;
 }
Пример #28
0
 public function __construct(MenuRepository $menu)
 {
     parent::__construct();
     $this->entityName = 'menus';
     $this->repository = $menu;
 }
Пример #29
0
 public function __construct(PageRepository $page)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $page;
 }
Пример #30
0
 public function __construct(TicketRepository $ticket)
 {
     parent::__construct();
     $this->entityName = 'support.tickets';
     $this->repository = $ticket;
 }