/**
  * Creates a new OutSubsgroupVirtual model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new OutSubsgroupVirtual();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         echo 1;
     } else {
         return $this->renderAjax('create', ['model' => $model]);
     }
 }