JEMBOT MAWOT Bypass Shell

Current Path : /home/cinepatreb/www/php/dao/class/dao/
Upload File :
Current File : /home/cinepatreb/www/php/dao/class/dao/ListeHeureGroupeDAO.class.php

<?php

/**
 * Intreface DAO
 *
 * @author: http://phpdao.com
 * @date: 2015-01-28 23:26
 */
interface ListeHeureGroupeDAO {

    /**
     * Get Domain object by primry key
     *
     * @param String $id primary key
     * @Return ListeJourGroupe 
     */
    public function load($id);

    /**
     * Get all records from table
     */
    public function queryAll();

    /**
     * Get all records from table ordered by field
     * @Param $orderColumn column name
     */
    public function queryAllOrderBy($orderColumn);

    /**
     * Delete record from table
     * @param listeJourGroupe primary key
     */
    public function delete($pkListeJourGroupe);

    /**
     * Insert record to table
     *
     * @param ListeJourGroupe listeJourGroupe
     */
    public function insert($listeJourGroupe);

    /**
     * Update record in table
     *
     * @param ListeJourGroupe listeJourGroupe
     */
    public function update($listeJourGroupe);

    /**
     * Delete all rows
     */
    public function clean();

    public function queryByHeureFilm($groupe, $cine, $date, $film);

    public function queryByHeureParJour($groupe, $cine, $date);

    public function queryByHeureTotalParJour($groupe, $cine, $date);
}

?>

xxxxx1.0, XXX xxxx