Files
website/rendering/Model/CarColorModel.php

23 lines
373 B
PHP

<?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 = '';
}