diff --git a/class/ligneFacture.php b/class/ligneFacture.php
deleted file mode 100644
index e553d8be64a4ccf7a1bd0a55bfd7393dd5d557f2..0000000000000000000000000000000000000000
--- a/class/ligneFacture.php
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-
-class LigneFacture extends Objet
-{
-    protected $id;
-    protected $facture;
-    protected $prestation;
-    protected $ordonnance;
-    protected $produit;
-    protected $quantite;
-    protected $remise;
-
-    public function id()
-    {
-        return $this->id;
-    }
-    
-    public function setId($id)
-    {
-        $this->id = $id;
-    }
-
-    public function facture()
-    {
-        return $this->facture;
-    }
-    
-    public function setFacture($facture)
-    {
-        $this->facture = $facture;
-    }
-
-    public function prestation()
-    {
-        return $this->prestation;
-    }
-    
-    public function setPrestation($prestation)
-    {
-        $this->prestation = $prestation;
-    }
-
-    public function ordonnance()
-    {
-        return $this->ordonnance;
-    }
-    
-    public function setOrdonnance($ordonnance)
-    {
-        $this->ordonnance = $ordonnance;
-    }
-
-    public function produit()
-    {
-        return $this->produit;
-    }
-    
-    public function setProduit($produit)
-    {
-        $this->produit = $produit;
-    }
-
-
-    public function quantite()
-    {
-        return $this->quantite;
-    }
-    
-    public function setQuantite($quantite)
-    {
-        $this->quantite = $quantite;
-    }
-
-    public function remise()
-    {
-        return $this->remise;
-    }
-    
-    public function setRemise($remise)
-    {
-        $this->remise = $remise;
-    }
\ No newline at end of file
diff --git a/class/ligneOrdonnance.php b/class/ligneOrdonnance.php
deleted file mode 100644
index a172c9a20f3353998e3559e94e35d006ca21c84f..0000000000000000000000000000000000000000
--- a/class/ligneOrdonnance.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-
-class LigneOrdonnance extends Objet
-{
-    protected $ordonnance;
-    protected $produit;
-    protected $quantite;
-    protected $instruction;
-
-    public function ordonnance()
-    {
-        return $this->ordonnance;
-    }
-    
-    public function setOrdonnance($ordonnance)
-    {
-        $this->ordonnance = $ordonnance;
-    }
-
-    public function produit()
-    {
-        return $this->produit;
-    }
-    
-    public function setProduit($produit)
-    {
-        $this->produit = $produit;
-    }
-
-    public function quantite()
-    {
-        return $this->quantite;
-    }
-    
-    public function setQuantite($quantite)
-    {
-        $this->quantite = $quantite;
-    }
-
-    public function instruction()
-    {
-        return $this->instruction;
-    }
-    
-    public function setInstruction($instruction)
-    {
-        $this->instruction = $instruction;
-    }
\ No newline at end of file