oms-Accounting/Models/IncomeStatement.php
2017-11-05 13:09:39 +01:00

96 lines
1.4 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @category TBD
* @package TBD
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace Modules\Accounting\Models;
use phpOMS\Utils\IO\ExchangeInterface;
/**
* IncomeStatement class.
*
* @category Module
* @package Accounting
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
abstract class IncomeStatement implements ExchangeInterface
{
private $id = 0;
private $date = null;
private $incomeStatement = [];
public function __construct()
{
}
/**
* {@inheritdoc}
*/
public function exportJson($path)
{
}
/**
* {@inheritdoc}
*/
public function importJson($path)
{
}
/**
* {@inheritdoc}
*/
public function exportCsv($path)
{
}
/**
* {@inheritdoc}
*/
public function importCsv($path)
{
}
/**
* {@inheritdoc}
*/
public function exportExcel($path)
{
}
/**
* {@inheritdoc}
*/
public function importExcel($path)
{
}
/**
* {@inheritdoc}
*/
public function exportPdf($path)
{
}
/**
* {@inheritdoc}
*/
public function importPdf($path)
{
}
}