Ejemplo n.º 1
0
 /**
  * Saves the artist to the database.
  *
  * @param \App\Model\Entity\Conge $conge
  */
 public function save($conge)
 {
     $congeData = array('date_debut' => $conge->getDateDebut(), 'date_fin' => $conge->getDateFin(), 'commentaire' => $conge->getCommentaire(), 'statut' => $conge->getStatut(), 'e_id' => $conge->getEmployeeId());
     $this->db->insert('conge', $congeData);
 }