Subversion-Projekte lars-tiefland.ci

Revision

Revision 528 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed

<?php

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

/**
 * Bestelladresse_model
 * 
 * Adressen für Bestellungen
 * 
 * @package WebanOS CI
 * @author Lars Tiefland
 * @copyright 2016
 * @version $Id: Bestelladresse_model.php 528 2016-09-15 11:20:18Z lars $
 * @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)
        {
                
        }
}

?>