protected function load()
 {
     if ($this->loaded === true) {
         return;
     }
     $this->loaded = true;
     $routerList = $this->configSection->getSection('router-list')->toArray();
     foreach ($routerList as $router) {
         $this->addRouter($this->createRouter($router));
     }
 }