Esempio n. 1
0
 /**
  * Finds the Entrada model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Entrada the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Entrada::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Esempio n. 2
0
 /**
  * Finds the Entrada model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $idEntrada
  * @param integer $producto_idProducto
  * @return Entrada the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($idEntrada, $producto_idProducto)
 {
     if (($model = Entrada::findOne(['idEntrada' => $idEntrada, 'producto_idProducto' => $producto_idProducto])) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }