Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Model extends Nette\Object
- {
- /** @var Nette\Database\Table\Selection */
- private $db;
- public function __construct(DibiConnection $db)
- {
- $this->db = $db;
- }
- public function getCars()
- {
- return $this->db
- ->select('*')
- ->from('nove_vozy');
- }
- public function getCar($id = 0)
- {
- return $this->db
- ->select('*')
- ->from('nove_vozy')->where('id = %s', $id);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment