Пример #1
0
 /**
  * Finds the Timportir model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $idtimp
  * @param integer $tdafimportir_id
  * @return Timportir the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($idtimp, $tdafimportir_id)
 {
     if (($model = Timportir::findOne(['idtimp' => $idtimp, 'tdafimportir_id' => $tdafimportir_id])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }