public function __construct(StorageORMInterface $storage)
 {
     parent::__construct('author', new Author(), $storage);
 }
 public function __construct(StorageORMInterface $storage)
 {
     parent::__construct('article_category', new ArticleCategory(), $storage);
 }
 public function __construct(StorageORMInterface $storage)
 {
     parent::__construct('article', new Article(), $storage);
 }
 public function __construct(StorageORMInterface $storage)
 {
     parent::__construct('comment', new Comment(), $storage);
 }