Subversion-Projekte lars-tiefland.ci

Revision

Revision 517 | Revision 527 | Zur aktuellen Revision | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

/**
 * @author Lars Tiefland
 * @copyright 2016
 */

/**
 * Bestelladresse_model
 * 
 * Adressen für Bestellungen
 * 
 * @package   
 * @author 
 * @copyright Lars Tiefland
 * @version 2016
 * @access public
 */
class Bestelladresse_model extends CI_Model
{
        /**
         * Bestelladresse_model::__construct()
         * 
         * @return
         */
        public function __construct()
        {
                parent::__construct();
        }
        
        /**
         * Bestelladresse_model::create()
         * 
         * @param mixed $data
         * @return
         */
        public function create($data)
        {
                
        }
}

?>