diff --git a/htdocs/societe/canvas/company/dao_thirdparty_company.class.php b/htdocs/societe/canvas/company/dao_thirdparty_company.class.php deleted file mode 100644 index 61a8fd27fc8..00000000000 --- a/htdocs/societe/canvas/company/dao_thirdparty_company.class.php +++ /dev/null @@ -1,43 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/societe/canvas/company/dao_thirdparty_company.class.php - * \ingroup thirdparty - * \brief Fichier de la classe des tiers par defaut - */ - -/** - * \class DaoThirdPartyCompany - * \brief Classe permettant la gestion des tiers par defaut, cette classe surcharge la classe societe - */ -class DaoThirdPartyCompany extends Societe -{ - - /** - * Constructor - * - * @param DoliDB $DB Databae handler - */ - function DaoThirdPartyCompany($DB) - { - $this->db = $DB; - } - -} - -?> \ No newline at end of file diff --git a/htdocs/societe/canvas/individual/dao_thirdparty_individual.class.php b/htdocs/societe/canvas/individual/dao_thirdparty_individual.class.php deleted file mode 100644 index e96e6e7f2c0..00000000000 --- a/htdocs/societe/canvas/individual/dao_thirdparty_individual.class.php +++ /dev/null @@ -1,44 +0,0 @@ - - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/societe/canvas/individual/dao_thirdparty_individual.class.php - * \ingroup thirdparty - * \brief Fichier de la classe des particuliers - */ - -/** - * \class DaoThirdPartyIndividual - * \brief Classe permettant la gestion des particuliers, cette classe surcharge la classe societe - */ -class DaoThirdPartyIndividual extends Societe -{ - public $list_datas = array(); - - /** - * Constructor - * - * @param DoliDB $DB Databae handler - */ - function __construct($DB) - { - $this->db = $DB; - } - -} - -?> \ No newline at end of file