JEMBOT MAWOT Bypass Shell
<?php
/**
 * Intreface DAO
 *
 * @author: http://phpdao.com
 * @date: 2015-01-28 23:26
 */
interface ListeFilmGroupeDAO {
    /**
     * 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 queryByFilm($groupe, $cine, $date);
}
?>
xxxxx1.0, XXX xxxx