JEMBOT MAWOT Bypass Shell

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

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

	/**
	 * Get Domain object by primry key
	 *
	 * @param String $id primary key
	 * @Return ListeGenreFilm 
	 */
	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 listeGenreFilm primary key
 	 */
	public function delete($pkListeGenreFilm);
	
	/**
 	 * Insert record to table
 	 *
 	 * @param ListeGenreFilm listeGenreFilm
 	 */
	public function insert($listeGenreFilm);
	
	/**
 	 * Update record in table
 	 *
 	 * @param ListeGenreFilm listeGenreFilm
 	 */
	public function update($listeGenreFilm);	

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

	public function queryByFkFilm($value);

	public function queryByFkGenre($value);


	public function deleteByFkFilm($value);

	public function deleteByFkGenre($value);


}
?>

xxxxx1.0, XXX xxxx