/**
  * Constructor
  *
  * @param \RedKiteLabs\RedKiteCms\RedKiteCmsBundle\Core\Content\Block\BlockManager $blockManager
  * @param \Symfony\Component\DependencyInjection\ContainerInterface       $container
  *
  * @api
  */
 public function __construct(BlockManager $blockManager, ContainerInterface $container = null)
 {
     parent::__construct($container);
     $this->blockManager = $blockManager;
 }
 /**
  * Constructor
  *
  * @param SeoManager       $seoManager
  * @param ContainerInterface $container
  *
  * @api
  */
 public function __construct(SeoManager $seoManager, ContainerInterface $container = null)
 {
     parent::__construct($container);
     $this->seoManager = $seoManager;
 }