Removed deprecated file

This commit is contained in:
eldy 2011-09-28 21:11:57 +02:00
parent 60b3640bfc
commit f9927e856f
2 changed files with 0 additions and 87 deletions

View File

@ -1,43 +0,0 @@
<?php
/* Copyright (C) 2010 Regis Houssin <regis@dolibarr.fr>
*
* 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 <http://www.gnu.org/licenses/>.
*/
/**
* \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;
}
}
?>

View File

@ -1,44 +0,0 @@
<?php
/* Copyright (C) 2010-2011 Regis Houssin <regis@dolibarr.fr>
*
* 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 <http://www.gnu.org/licenses/>.
*/
/**
* \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;
}
}
?>