Skip to content

Instantly share code, notes, and snippets.

@JuanLuisGarciaBorrego
Created July 5, 2015 16:07
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/ee40cee1bf8dab030d8f to your computer and use it in GitHub Desktop.
Save JuanLuisGarciaBorrego/ee40cee1bf8dab030d8f to your computer and use it in GitHub Desktop.
CRUDInterface
class ArticleRepository implements CRUDInterface
{
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