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