function action_new()
 {
     PermissionHelper::Verification('Editor');
     $name = $_POST['inputName'];
     $section = new Section();
     $section->section_name = $name;
     SectionService::Create($section);
     header("Location: /Section/Item");
 }