/**
  * @param PostService $post
  * @param CategoryService $category
  */
 public function __construct(PostService $post, CategoryService $category)
 {
     parent::__construct();
     $this->post = $post;
     $this->category = $category;
 }
 /**
  * @param CommentService $comment
  */
 public function __construct(CommentService $comment)
 {
     parent::__construct();
     $this->comment = $comment;
 }
 /**
  * @param UserService $user
  */
 public function __construct(UserService $user)
 {
     parent::__construct();
     $this->user = $user;
 }
 /**
  * @param CategoryService $category
  */
 public function __construct(CategoryService $category)
 {
     $this->category = $category;
     parent::__construct();
 }
 /**
  * @param PageService $page
  */
 public function __construct(PageService $page)
 {
     parent::__construct();
     $this->page = $page;
 }