Exemplo n.º 1
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 03.12.2015
 * Time: 0:52
 */
include_once $_SERVER['DOCUMENT_ROOT'] . '/Model/AccountBillingModel.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/Controllers/AccountBillingController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/View/AccountBillingView.php';
$model = new AccountBillingModel();
$controller = new AccountBillingController($model);
$view = new AccountBillingView($model);
$controller->actionInsertBillingData();
Exemplo n.º 2
0
<?php

/**
 * Created by PhpStorm.
 * User: Home
 * Date: 03.12.2015
 * Time: 0:08
 */
include_once $_SERVER['DOCUMENT_ROOT'] . '/Model/AccountBillingModel.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/Controllers/AccountBillingController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/View/AccountBillingView.php';
$model = new AccountBillingModel();
$controller = new AccountBillingController($model);
$view = new AccountBillingView($model);
$controller->getBilling();
$view->getAccountBilling();