public function addComment(\Domain\Entities\Comment $comment)
 {
     $this->__load();
     return parent::addComment($comment);
 }
 public function setPost(Post $post)
 {
     $post->addComment($this);
     $this->post = $post;
 }