public function __construct(ProjectInterface $project)
 {
     parent::__construct($project, 'projects');
 }
 public function __construct(PartnerInterface $partner)
 {
     parent::__construct($partner, 'partners');
 }
 public function __construct(NewsletterInterface $newsletter)
 {
     parent::__construct($newsletter, 'newsletter');
 }
 public function __construct(CommentInterface $comment)
 {
     parent::__construct($comment);
 }
 public function __construct(ContactInterface $contact)
 {
     parent::__construct($contact, 'contacts');
 }
 public function __construct(PageInterface $page)
 {
     parent::__construct($page, 'page');
 }
 public function __construct(NewsInterface $news, Feed $feed)
 {
     $this->feed = $feed;
     parent::__construct($news, 'news');
 }
 public function __construct(ObjectInterface $object)
 {
     parent::__construct($object);
 }
 public function __construct(EventInterface $event, Calendar $calendar)
 {
     parent::__construct($event, 'events');
     $this->calendar = $calendar;
 }
 public function __construct(PlaceInterface $place)
 {
     parent::__construct($place, 'places');
 }
 public function __construct(GalleryInterface $gallery)
 {
     parent::__construct($gallery, 'galleries');
 }
 public function __construct(TagInterface $tag)
 {
     parent::__construct($tag, 'tags');
 }
 public function __construct(CategoryInterface $category)
 {
     parent::__construct($category, 'categories');
 }