public static function page()
 {
     $controller = new self();
     $method = $_GET[self::ACTION_URL_KEY] ? $_GET[self::ACTION_URL_KEY] : 'admin_index';
     echo $controller->ado($method);
 }