Einführung ThumbPages und Fahrzeug-Farbwechsler

This commit is contained in:
2017-01-09 19:20:13 +00:00
parent d3802a6a02
commit 1798b8da29
8 changed files with 212 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.01.2017
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
namespace Model;
use Helper\Database;
class CarColorModel extends Database
{
const TBL_NAME = TBL_CAR_COLOR;
const PRIMARY_KEY = 'carColorID';
const ORDER_BY = '';
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* Created by CS medien- & kommunikationssysteme.
* @author Christian Steinle
* @date 09.01.2017
*
* @copyright CS medien- & kommunikationssysteme (http://www.steinle-computer.de)
*/
namespace Model;
use Helper\Database;
class ThumbModel extends Database
{
const TBL_NAME = TBL_THUMB;
const PRIMARY_KEY = 'thumbID';
const ORDER_BY = '';
}