Skip to content

Instantly share code, notes, and snippets.

@JuanLuisGarciaBorrego
Created July 5, 2015 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JuanLuisGarciaBorrego/7780c77618c6e0f9ffb6 to your computer and use it in GitHub Desktop.
Save JuanLuisGarciaBorrego/7780c77618c6e0f9ffb6 to your computer and use it in GitHub Desktop.
ArticleRepositoryISP-Infrige
class ArticleRepository implements RepositoryInterface
{
public function insert($data)
{
//acción insert en BD
}
public function update($data)
{
//acción update en BD
}
public function delete($data){
//acción delete en BD
}
public function findAll($data)
{
//Muestra toda las filas de la tabla en BD
}
public function findById($data)
{
//Busca la fila que tenga el id x
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment